...

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

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

     1CREATE TABLE "selfservice_verification_flow_methods" (
     2"id" TEXT PRIMARY KEY,
     3"method" TEXT NOT NULL,
     4"selfservice_verification_flow_id" char(36) NOT NULL,
     5"config" TEXT NOT NULL,
     6"created_at" DATETIME NOT NULL,
     7"updated_at" DATETIME NOT NULL
     8);
     9ALTER TABLE "selfservice_verification_flows" ADD COLUMN "active_method" TEXT;

View as plain text