Files
spree_burstnet/db/migrate/20130529065305_create_orders.rb

9 lines
128 B
Ruby

class CreateOrders < ActiveRecord::Migration
def change
create_table :orders do |t|
t.timestamps
end
end
end