019_add_whiteboards_to_content.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:
Ajax
开发平台:
Others
- class AddWhiteboardsToContent < ActiveRecord::Migration
- def self.up
- STDERR.puts "Adding whiteboard to articles, comments and pages"
- modify_tables_and_update([:add_column, :articles, :whiteboard, :text],
- [:add_column, :comments, :whiteboard, :text],
- [:add_column, :pages, :whiteboard, :text])
- end
- def self.down
- STDERR.puts "Removing whiteboard from articles, comments and pages"
- remove_column :articles, :whiteboard
- remove_column :comments, :whiteboard
- remove_column :pages, :whiteboard
- end
- end