discourse/db/migrate/20140408061512_add_wiki_to_posts.rb

6 lines
143 B
Ruby
Raw Normal View History

class AddWikiToPosts < ActiveRecord::Migration[4.2]
2014-05-13 20:53:11 +08:00
def change
add_column :posts, :wiki, :boolean, default: false, null: false
end
end