blob: 024f82c07ed1a48a226895254bc3308e7bdb78b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateFertilizerProducts < ActiveRecord::Migration[8.0]
def change
create_table :fertilizer_products do |t|
t.string :name, null: false
t.decimal :purity, precision: 5, scale: 2, null: false, default: 100.00
t.timestamps
end
add_index :fertilizer_products, :name, unique: true
end
end
|