foodsoft/db/migrate/20171001020000_add_end_acti...

6 lines
146 B
Ruby
Raw Normal View History

class AddEndActionToOrder < ActiveRecord::Migration
def change
add_column :orders, :end_action, :integer, default: 0, null: false
end
end