discourse/db/migrate/20130125030305_add_fields_to_post_action.rb

7 lines
175 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
class AddFieldsToPostAction < ActiveRecord::Migration
def change
add_column :post_actions, :deleted_by, :integer
add_column :post_actions, :message, :text
end
end