Add database column for user encrypt ciphertext

This commit is contained in:
Marcus Hill 2022-01-10 21:12:18 +00:00
parent 8e821b6e13
commit 6f419001dd
1 changed files with 1 additions and 0 deletions

1
db.sql
View File

@ -1163,6 +1163,7 @@ CREATE TABLE `users` (
`user_email` varchar(200) NOT NULL,
`user_password` varchar(200) NOT NULL,
`user_token` varchar(200) DEFAULT NULL,
`user_encryption_ciphertext` varchar(200) DEFAULT NULL,
`user_avatar` varchar(200) DEFAULT NULL,
`user_created_at` datetime NOT NULL,
`user_updated_at` datetime DEFAULT NULL,