fix missing comma in sql file

This commit is contained in:
Dario via Pythagoras 2020-07-03 11:52:28 +02:00
parent 9ade4f71cb
commit 07f0f039cf

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;