forgeplus/db/migrate/20240715072430_create_home_...

11 lines
235 B
Ruby

class CreateHomeTopSettings < ActiveRecord::Migration[5.2]
def change
create_table :home_top_settings do |t|
t.references :user
t.references :top, polymorphic: true, index: true
t.timestamps
end
end
end