...

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

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

     1CREATE TABLE `selfservice_verification_flow_methods` (
     2`id` char(36) NOT NULL,
     3PRIMARY KEY(`id`),
     4`method` VARCHAR (32) NOT NULL,
     5`selfservice_verification_flow_id` char(36) NOT NULL,
     6`config` JSON NOT NULL,
     7`created_at` DATETIME NOT NULL,
     8`updated_at` DATETIME NOT NULL
     9) ENGINE=InnoDB

View as plain text