Files
discourse/db/migrate/20150724182342_add_action_code_to_post.rb
2015-07-27 10:09:21 -04:00

6 lines
132 B
Ruby

class AddActionCodeToPost < ActiveRecord::Migration
def change
add_column :posts, :action_code, :string, null: true
end
end