...

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

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

     1CREATE TABLE `courier_messages` (
     2`id` char(36) NOT NULL,
     3PRIMARY KEY(`id`),
     4`type` INTEGER NOT NULL,
     5`status` INTEGER NOT NULL,
     6`body` VARCHAR (255) NOT NULL,
     7`subject` VARCHAR (255) NOT NULL,
     8`recipient` VARCHAR (255) NOT NULL,
     9`created_at` DATETIME NOT NULL,
    10`updated_at` DATETIME NOT NULL
    11) ENGINE=InnoDB;

View as plain text