Update user_credentials in schema-entities.sql

This commit is contained in:
ViacheslavKlimov 2024-09-17 13:20:07 +03:00
parent 264304fd99
commit 1ac47aa0c0

View File

@ -497,7 +497,9 @@ CREATE TABLE IF NOT EXISTS user_credentials (
reset_token varchar(255) UNIQUE, reset_token varchar(255) UNIQUE,
reset_token_exp_time BIGINT, reset_token_exp_time BIGINT,
user_id uuid UNIQUE, user_id uuid UNIQUE,
additional_info varchar DEFAULT '{}' additional_info varchar DEFAULT '{}',
last_login_ts BIGINT,
failed_login_attempts INT
); );
CREATE TABLE IF NOT EXISTS widget_type ( CREATE TABLE IF NOT EXISTS widget_type (