11 lines
230 B
Ruby
11 lines
230 B
Ruby
class CreateBooks < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :books do |t|
|
|
t.string :title
|
|
t.string :author
|
|
t.integer :price_cents
|
|
t.timestamps
|
|
t.integer :quantity
|
|
end
|
|
end
|
|
end
|