summaryrefslogtreecommitdiff
path: root/db/migrate/20241020144326_create_wines.rb
blob: d969b0aa2cdb3483a15c20e1da915d33f5aaaf8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class CreateWines < ActiveRecord::Migration[7.2]
  def change
    create_table :wines do |t|
      t.string :name
      t.integer :year
      t.string :variety
      t.string :region
      t.decimal :price
      t.integer :stock
      t.text :notes

      t.timestamps
    end
  end
end
Copyright 2019--2024 Marius PETER