20151110205154_create_products.rb 405 B

123456789101112131415161718
  1. class CreateProducts < ActiveRecord::Migration
  2. def change
  3. create_table :products do |t|
  4. t.string :sku
  5. t.string :name
  6. t.string :description
  7. t.decimal :price_base
  8. t.float :price_sale
  9. t.attachment :img_product
  10. t.boolean :presentation
  11. t.boolean :inventory
  12. t.decimal :content
  13. t.integer :status
  14. t.timestamps null: false
  15. end
  16. end
  17. end