Revert "fix missing comma in sql file"

This commit is contained in:
Dario via Pythagoras 2020-07-03 12:22:27 +02:00
parent 07f0f039cf
commit 17659a8a9d

View File

@ -2,6 +2,6 @@ CREATE TABLE `user_backups` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`passphrase` text COLLATE utf8_bin NOT NULL,
`mnemonic_type` int(11) DEFAULT '-1',
`mnemonic_type` int(11) DEFAULT '-1'
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;