...

Text file src/github.com/ory/x/popx/stub/migrations/transactional/20200830130646000004_add_verification_methods.sqlite3.up.sql

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

     1CREATE TABLE "_selfservice_verification_flows_tmp" (
     2"id" TEXT PRIMARY KEY,
     3"request_url" TEXT NOT NULL,
     4"issued_at" DATETIME NOT NULL DEFAULT 'CURRENT_TIMESTAMP',
     5"expires_at" DATETIME NOT NULL,
     6"csrf_token" TEXT NOT NULL,
     7"success" bool NOT NULL,
     8"created_at" DATETIME NOT NULL,
     9"updated_at" DATETIME NOT NULL,
    10"messages" TEXT,
    11"type" TEXT NOT NULL DEFAULT 'browser',
    12"state" TEXT NOT NULL DEFAULT 'show_form',
    13"active_method" TEXT
    14)

View as plain text