internetee-registry/db/migrate/20140730141443_add_contacts_to_domain.rb
2021-04-26 18:54:26 +05:00

11 lines
233 B
Ruby

class AddContactsToDomain < ActiveRecord::Migration[6.0]
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