...

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

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

     1CREATE TABLE `identity_verification_tokens` (
     2`id` char(36) NOT NULL,
     3PRIMARY KEY(`id`),
     4`token` VARCHAR (64) NOT NULL,
     5`used` bool NOT NULL DEFAULT false,
     6`used_at` DATETIME,
     7`expires_at` DATETIME NOT NULL,
     8`issued_at` DATETIME NOT NULL,
     9`identity_verifiable_address_id` char(36) NOT NULL,
    10`selfservice_verification_flow_id` char(36),
    11`created_at` DATETIME NOT NULL,
    12`updated_at` DATETIME NOT NULL,
    13FOREIGN KEY (`identity_verifiable_address_id`) REFERENCES `identity_verifiable_addresses` (`id`) ON DELETE cascade,
    14FOREIGN KEY (`selfservice_verification_flow_id`) REFERENCES `selfservice_verification_flows` (`id`) ON DELETE cascade
    15) ENGINE=InnoDB

View as plain text