11 lines
204 B
Ruby
11 lines
204 B
Ruby
|
|
class CreateCarts < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :carts do |t|
|
||
|
|
t.integer :user_id
|
||
|
|
t.boolean :ordered, default: false
|
||
|
|
|
||
|
|
t.timestamps null: false
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|