osem-fcy/db/migrate/20140801103645_create_commercials.rb
2014-08-06 14:30:50 +02:00

10 lines
253 B
Ruby

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