From: Richard Millet Date: Thu, 19 Sep 2019 20:45:54 +0000 (-0700) Subject: CC-740: Fixed typo in authentication.sql script. X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=b750b16c0247c667b5071f42b09891139d09404c;p=tmp%2Fjakarta-migration.git CC-740: Fixed typo in authentication.sql script. --- 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 );