discourse/db/migrate/20130131055710_add_custom_f...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
273 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddCustomFlagCountToTopics < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
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