osem-fcy/db/migrate/20130104142839_acts_as_commentable_upgrade_migration.rb
2014-09-02 21:41:25 +03:00

17 lines
522 B
Ruby

class ActsAsCommentableUpgradeMigration < ActiveRecord::Migration
def self.up
rename_column :comments, :comment, :body
add_column :comments, :subject, :string
add_column :comments, :parent_id, :integer
add_column :comments, :lft, :integer
add_column :comments, :rgt, :integer
end
def self.down
rename_column :comments, :body, :comment
remove_column :comments, :subject
remove_column :comments, :parent_id
remove_column :comments, :lft
remove_column :comments, :rgt
end
end