blob: d9c1c5dba07302893c390f1880ad42fef638f0c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class CreateBuiltHearthAmenities < ActiveRecord::Migration[6.1]
def change
create_table :built_hearth_amenities do |t|
t.references :hearth, null: false, foreign_key: true
t.references :hearth_amenity, null: false, foreign_key: true
t.integer :level
t.timestamps
end
end
end
|