mirror of
https://github.com/internetee/registry.git
synced 2025-06-06 20:55:44 +02:00
9 lines
294 B
Ruby
9 lines
294 B
Ruby
class AddAddressAttributes < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :contacts, :city, :string
|
|
add_column :contacts, :street, :text
|
|
add_column :contacts, :zip, :string
|
|
add_column :contacts, :country_code, :string
|
|
add_column :contacts, :state, :string
|
|
end
|
|
end
|