class CreateProducts < ActiveRecord::Migration[6.0]
  def change
    create_table :products do |t|
      t.string :sn
      t.references :materiel, null: false, foreign_key: true
      t.integer :status

      t.timestamps
    end
  end
end
