...

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

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

     1CREATE TABLE "_selfservice_settings_requests_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"identity_id" char(36) NOT NULL,
     7"created_at" DATETIME NOT NULL,
     8"updated_at" DATETIME NOT NULL,
     9"active_method" TEXT,
    10"messages" TEXT,
    11"state" TEXT NOT NULL DEFAULT 'show_form',
    12FOREIGN KEY (identity_id) REFERENCES identities (id) ON UPDATE NO ACTION ON DELETE CASCADE
    13)

View as plain text