discourse/db/migrate/20130131055710_add_custom_f...

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