internetee-registry/db/migrate/20140730141443_add_contacts_to_domain.rb
2014-07-30 18:09:55 +03:00

11 lines
228 B
Ruby

class AddContactsToDomain < ActiveRecord::Migration
def change
create_table :domain_contacts do |t|
t.integer :contact_id
t.integer :domain_id
t.string :contact_type
t.timestamps
end
end
end