internetee-registry/db/migrate/20150921111842_rename_contact_ident_updator.rb
2015-09-23 12:34:18 +03:00

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