From b750b16c0247c667b5071f42b09891139d09404c Mon Sep 17 00:00:00 2001 From: Richard Millet Date: Thu, 19 Sep 2019 13:45:54 -0700 Subject: [PATCH] CC-740: Fixed typo in authentication.sql script. --- .../pstore/src/main/resources/db/postgresql/authentication.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/authentication/pstore/src/main/resources/db/postgresql/authentication.sql b/services/authentication/pstore/src/main/resources/db/postgresql/authentication.sql index a8be95c93..af0220fed 100644 --- a/services/authentication/pstore/src/main/resources/db/postgresql/authentication.sql +++ b/services/authentication/pstore/src/main/resources/db/postgresql/authentication.sql @@ -3,7 +3,7 @@ CREATE TABLE IF NOT EXISTS users ( created_at TIMESTAMP NOT NULL, lastLogin TIMESTAMP, passwd VARCHAR(128) NOT NULL, - salt VARCHAR(128) + salt VARCHAR(128), updated_at TIMESTAMP ); -- 2.47.3