...

Text file src/github.com/ory/x/popx/stub/migrations/transactional/20191100000002000002_requests.postgres.up.sql

Documentation: github.com/ory/x/popx/stub/migrations/transactional

     1CREATE TABLE "selfservice_registration_requests" (
     2"id" UUID NOT NULL,
     3PRIMARY KEY("id"),
     4"request_url" VARCHAR (2048) NOT NULL,
     5"issued_at" timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
     6"expires_at" timestamp NOT NULL,
     7"active_method" VARCHAR (32) NOT NULL,
     8"csrf_token" VARCHAR (255) NOT NULL,
     9"created_at" timestamp NOT NULL,
    10"updated_at" timestamp NOT NULL
    11)

View as plain text