mirror of
https://github.com/internetee/registry.git
synced 2025-05-18 18:29:40 +02:00
6 lines
235 B
Ruby
6 lines
235 B
Ruby
class RenameContactIdentUpdator < ActiveRecord::Migration
|
|
def change
|
|
rename_column :contacts, :legacy_ident_updated_at, :ident_updated_at
|
|
rename_column :log_contacts, :legacy_ident_updated_at, :ident_updated_at
|
|
end
|
|
end
|