fix sql file

This commit is contained in:
einhornimmond 2021-02-18 13:36:24 +01:00 committed by Ulf Gebhardt
parent 405c99add6
commit b3df1bd44f
No known key found for this signature in database
GPG Key ID: 81308EFE29ABFEBD

View File

@ -3,7 +3,7 @@ CREATE TABLE `users` (
`email` varchar(191) NOT NULL, `email` varchar(191) NOT NULL,
`first_name` varchar(150) NOT NULL, `first_name` varchar(150) NOT NULL,
`last_name` varchar(255) DEFAULT '', `last_name` varchar(255) DEFAULT '',
`password` bigint unsigned NOT NULL, `password` bigint unsigned DEFAULT 0,
`pubkey` binary(32) DEFAULT NULL, `pubkey` binary(32) DEFAULT NULL,
`privkey` binary(80) DEFAULT NULL, `privkey` binary(80) DEFAULT NULL,
`created` datetime NOT NULL DEFAULT current_timestamp(), `created` datetime NOT NULL DEFAULT current_timestamp(),