tap/db/migrate/20150310075658_add_cancelled_boolean_to_orders.rb

6 lines
144 B
Ruby
Raw Normal View History

2015-03-10 10:37:48 +00:00
class AddCancelledBooleanToOrders < ActiveRecord::Migration
def change
add_column :orders, :cancelled, :boolean, default: false
end
end