testy/db/migrate/20260517111105_create_products.rb

12 lines
230 B
Ruby
Raw Normal View History

2026-05-17 11:12:43 +00:00
class CreateProducts < ActiveRecord::Migration[8.0]
def change
create_table :products do |t|
t.string :name
t.string :barcode
t.timestamps
end
add_index :products, :barcode, unique: true
end
end