discourse/db/migrate/20130131055710_add_custom_f...

7 lines
242 B
Ruby
Raw Normal View History

class AddCustomFlagCountToTopics < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_column :topics, :custom_flag_count, :integer, null: false, default: 0
add_column :posts, :custom_flag_count, :integer, null: false, default: 0
end
end