mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 02:09:39 +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
|