DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for: class MigrationClass < ActiveRecord::Migration[4.2] (called from require at bin/rails:4)
10 lines
281 B
Ruby
10 lines
281 B
Ruby
class RemoveParentIdFromComments < ActiveRecord::Migration[4.2]
|
|
def change
|
|
Comment.build_ancestry_from_parent_ids! rescue nil
|
|
|
|
remove_column :comments, :parent_id, :integer
|
|
remove_column :comments, :lft, :integer
|
|
remove_column :comments, :rgt, :integer
|
|
end
|
|
end
|