github.com/icyphox/x@v0.0.355-0.20220311094250-029bd783e8b8/popx/stub/migrations/transactional/20200519101057000005_create_recovery_addresses.postgres.up.sql (about)

     1  CREATE TABLE "identity_recovery_tokens" (
     2  "id" UUID NOT NULL,
     3  PRIMARY KEY("id"),
     4  "token" VARCHAR (64) NOT NULL,
     5  "used" bool NOT NULL DEFAULT 'false',
     6  "used_at" timestamp,
     7  "identity_recovery_address_id" UUID NOT NULL,
     8  "selfservice_recovery_request_id" UUID NOT NULL,
     9  "created_at" timestamp NOT NULL,
    10  "updated_at" timestamp NOT NULL,
    11  FOREIGN KEY ("identity_recovery_address_id") REFERENCES "identity_recovery_addresses" ("id") ON DELETE cascade,
    12  FOREIGN KEY ("selfservice_recovery_request_id") REFERENCES "selfservice_recovery_requests" ("id") ON DELETE cascade
    13  )