Replaced address with local and international addr

This commit is contained in:
Andres Keskküla 2014-08-25 17:05:57 +03:00
parent fe54f327d9
commit 2655da4555
16 changed files with 208 additions and 57 deletions

View file

@ -0,0 +1,10 @@
class AddPostalInfoToAddress < ActiveRecord::Migration
def change
add_column :addresses, :name, :string
add_column :addresses, :org_name, :string
add_column :addresses, :type, :string
remove_column :contacts, :name, :string
remove_column :contacts, :org_name, :string
end
end