mirror of
https://github.com/internetee/registry.git
synced 2025-05-16 17:37:17 +02:00
9 lines
289 B
Ruby
9 lines
289 B
Ruby
class AddAddressAttributes < ActiveRecord::Migration
|
|
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
|