2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 09:10:25 +08:00
discourse/db/migrate/20130131055710_add_custom_flag_count_to_topics.rb

6 lines
242 B
Ruby

class AddCustomFlagCountToTopics < ActiveRecord::Migration[4.2]
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