...

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

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

     1CREATE TABLE "selfservice_verification_flow_methods" (
     2"id" UUID NOT NULL,
     3PRIMARY KEY("id"),
     4"method" VARCHAR (32) NOT NULL,
     5"selfservice_verification_flow_id" UUID NOT NULL,
     6"config" json NOT NULL,
     7"created_at" timestamp NOT NULL,
     8"updated_at" timestamp NOT NULL
     9);COMMIT TRANSACTION;BEGIN TRANSACTION;
    10ALTER TABLE "selfservice_verification_flows" ADD COLUMN "active_method" VARCHAR (32);COMMIT TRANSACTION;BEGIN TRANSACTION;

View as plain text