1CREATE TABLE `selfservice_errors` ( 2`id` char(36) NOT NULL, 3PRIMARY KEY(`id`), 4`errors` JSON NOT NULL, 5`seen_at` DATETIME NOT NULL, 6`was_seen` bool NOT NULL, 7`created_at` DATETIME NOT NULL, 8`updated_at` DATETIME NOT NULL 9) ENGINE=InnoDB;
View as plain text