blob: 6b7f0060d24aa0d796d1b83a5c1b3a03a60ff3ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class CreateRafts < ActiveRecord::Migration[8.0]
def change
create_table :rafts do |t|
t.references :bed, null: false, foreign_key: true
t.integer :location, null: false
t.references :crop, null: true, foreign_key: true
t.timestamps
end
add_index :rafts, [ :bed_id, :location ], unique: true
end
end
|