2017-08-31 00:06:56 -04:00
|
|
|
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
|