mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
11 lines
228 B
Ruby
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
|