6 lines
154 B
Ruby
6 lines
154 B
Ruby
class RemoveChildrenCountFromComments < ActiveRecord::Migration
|
|
def change
|
|
remove_column :comments, :children_count, :integer, default: 0
|
|
end
|
|
end
|