discourse/db/migrate/20130125030305_add_fields_t...

7 lines
175 B
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
class AddFieldsToPostAction < ActiveRecord::Migration
def change
add_column :post_actions, :deleted_by, :integer
add_column :post_actions, :message, :text
end
end