discourse/db/migrate/20131115165105_add_edit_reason_to_posts.rb
2013-11-15 23:28:49 +01:00

6 lines
121 B
Ruby

class AddEditReasonToPosts < ActiveRecord::Migration
def change
add_column :posts, :edit_reason, :string
end
end