internetee-registry/db/migrate/20150921111842_rename_contact_ident_updator.rb
2021-04-26 18:54:26 +05:00

6 lines
240 B
Ruby

class RenameContactIdentUpdator < ActiveRecord::Migration[6.0]
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