Files
grecia/db/migrate/20150903142924_remove_children_count_from_comments.rb
2015-09-03 16:33:29 +02:00

6 lines
154 B
Ruby

class RemoveChildrenCountFromComments < ActiveRecord::Migration
def change
remove_column :comments, :children_count, :integer, default: 0
end
end