12 lines
238 B
Ruby
12 lines
238 B
Ruby
class CreateProducts < ActiveRecord::Migration
|
|
def change
|
|
create_table :products do |t|
|
|
t.string :name
|
|
t.integer :purchase_price
|
|
t.integer :sale_price
|
|
t.string :img_path
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|