Files
discourse/db/migrate/20140408061512_add_wiki_to_posts.rb
2017-09-25 13:48:58 +08:00

6 lines
143 B
Ruby

class AddWikiToPosts < ActiveRecord::Migration[4.2]
def change
add_column :posts, :wiki, :boolean, default: false, null: false
end
end