osem-fcy/db/migrate/20140801103645_create_commercials.rb

12 lines
284 B
Ruby

# frozen_string_literal: true
class CreateCommercials < ActiveRecord::Migration
def change
create_table :commercials do |t|
t.string :commercial_id
t.string :commercial_type
t.references :commercialable, polymorphic: true
t.timestamps
end
end
end