mirror of
https://github.com/internetee/registry.git
synced 2025-07-22 18:56:05 +02:00
8 lines
257 B
Ruby
8 lines
257 B
Ruby
class AddNameToContact < ActiveRecord::Migration[6.0]
|
|
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
|