mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-28 09:24:24 +01:00
22 lines
555 B
Ruby
22 lines
555 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateProducts < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :products do |t|
|
|
t.string :name
|
|
t.string :slug
|
|
t.string :sku
|
|
t.text :description
|
|
t.boolean :is_active, default: false
|
|
t.belongs_to :product_category, foreign_key: true
|
|
t.integer :amount
|
|
t.integer :quantity_min
|
|
t.jsonb :stock, default: { internal: 0, external: 0 }
|
|
t.boolean :low_stock_alert, default: false
|
|
t.integer :low_stock_threshold
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|