1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 04:09:53 +00:00
discourse/db/migrate/20120517200130_add_quoteless_to_post.rb

6 lines
134 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class AddQuotelessToPost < ActiveRecord::Migration
def change
add_column :posts, :quoteless, :boolean, default: false
end
end