mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +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;
|