18F/identity-idp

View on GitHub
db/primary_migrate/20180125230905_change_totp_timestamp_to_integer.rb

Summary

Maintainability
A
0 mins
Test Coverage
class ChangeTotpTimestampToInteger < ActiveRecord::Migration[5.1]
  def change
    remove_column :users, :totp_timestamp, :timestamp
    add_column :users, :totp_timestamp, :integer
  end
end