12 lines
257 B
Ruby
12 lines
257 B
Ruby
class CreatePhoneNumbers < ActiveRecord::Migration[8.0]
|
|
def change
|
|
create_table :phone_numbers do |t|
|
|
t.string :phone_number
|
|
t.integer :type
|
|
t.references :contact, null: false, foreign_key: true
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|