blob: b5d0adb26cd6da24b530b9dcd242925ad3f7edd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class CreateHearthPlantings < ActiveRecord::Migration[6.1]
def change
create_table :hearth_plantings do |t|
t.references :hearth, null: false, foreign_key: true
t.references :item, null: false, foreign_key: true
t.timestamps
end
end
end
|