discourse/db/migrate/20130125002652_add_hidden_t...

7 lines
198 B
Ruby
Raw Normal View History

class AddHiddenToPosts < ActiveRecord::Migration[4.2]
2013-02-05 14:16:51 -05:00
def change
add_column :posts, :hidden, :boolean, null: false, default: false
add_column :posts, :hidden_reason_id, :integer
end
end