mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
6 lines
237 B
Ruby
6 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
|