7 lines
237 B
Ruby
7 lines
237 B
Ruby
|
class AddCustomFlagCountToTopics < ActiveRecord::Migration
|
||
|
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
|