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