019_add_whiteboards_to_content.rb
上传用户:netsea168
上传日期:2022-07-22
资源大小:4652k
文件大小:1k
源码类别:

Ajax

开发平台:

Others

  1. class AddWhiteboardsToContent < ActiveRecord::Migration
  2.   def self.up
  3.     STDERR.puts "Adding whiteboard to articles, comments and pages"
  4.     modify_tables_and_update([:add_column, :articles, :whiteboard, :text],
  5.                              [:add_column, :comments, :whiteboard, :text],
  6.                              [:add_column, :pages,    :whiteboard, :text])
  7.   end
  8.   def self.down
  9.     STDERR.puts "Removing whiteboard from articles, comments and pages"
  10.     remove_column :articles, :whiteboard
  11.     remove_column :comments, :whiteboard
  12.     remove_column :pages, :whiteboard
  13.   end
  14. end