encrypt client password and fix upgrade db script (#188)

* encrypt client password and fix upgrade db script

* encrypt client password and fix upgrade db script

* obfuscate client password
This commit is contained in:
Hoan Luu Huu
2023-06-16 07:46:22 +07:00
committed by GitHub
parent 0b33ef0c2c
commit a0797a3a4c
6 changed files with 56 additions and 51 deletions
+1 -1
View File
@@ -135,7 +135,7 @@ client_sid CHAR(36) NOT NULL UNIQUE ,
account_sid CHAR(36) NOT NULL,
is_active BOOLEAN NOT NULL DEFAULT 1,
username VARCHAR(64),
password VARCHAR(64),
password VARCHAR(1024),
PRIMARY KEY (client_sid)
);