obsolete.ChilliProject/db/migrate/20110519194936_remove_comme...

10 lines
203 B
Ruby

class RemoveCommentsFromWikiContent < ActiveRecord::Migration
def self.up
remove_column :wiki_contents, :comments
end
def self.down
add_column :wiki_contents, :comments, :string
end
end