mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:49:14 +08:00
7 lines
193 B
Ruby
7 lines
193 B
Ruby
class AddHiddenToPosts < ActiveRecord::Migration
|
|
def change
|
|
add_column :posts, :hidden, :boolean, null: false, default: false
|
|
add_column :posts, :hidden_reason_id, :integer
|
|
end
|
|
end
|