mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-18 10:51:23 +00:00
8 lines
229 B
SQL
8 lines
229 B
SQL
CREATE TABLE `user_backups` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT,
|
|
`user_id` int NOT NULL,
|
|
`passphrase` text NOT NULL,
|
|
`mnemonic_type` int DEFAULT '-1',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|