mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 09:10:25 +08:00
6 lines
242 B
Ruby
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
|