18F/identity-idp

View on GitHub
db/primary_migrate/20190506152241_create_push_account_deletes.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreatePushAccountDeletes < ActiveRecord::Migration[5.1]
  disable_ddl_transaction!

  def change
    create_table :push_account_deletes do |t|
      t.datetime :created_at, null: false
      t.integer  :agency_id, null: false
      t.string   :uuid, null: false
    end
    add_index :push_account_deletes, %i[created_at], algorithm: :concurrently
  end
end