forgeplus/db/migrate/20240715072430_create_home_...

11 lines
282 B
Ruby

class CreateHomeTopSettings < ActiveRecord::Migration[5.2]
def change
create_table :home_top_settings, options: 'ENGINE=InnoDB DEFAULT CHARSET=utf8' do |t|
t.references :user
t.references :top, polymorphic: true, index: true
t.timestamps
end
end
end