mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 22:54:47 +02:00
8 lines
252 B
Ruby
8 lines
252 B
Ruby
class AddNameToContact < ActiveRecord::Migration
|
|
def change
|
|
remove_column :addresses, :name, :string
|
|
remove_column :addresses, :org_name, :string
|
|
add_column :contacts, :name, :string
|
|
add_column :contacts, :org_name, :string
|
|
end
|
|
end
|