initial import
This commit is contained in:
18
modules/core/db/init/postgres/01.pswdplus-create-db.sql
Normal file
18
modules/core/db/init/postgres/01.pswdplus-create-db.sql
Normal file
@ -0,0 +1,18 @@
|
||||
-- begin PSWDPLUS_PASSWORD_HISTORY
|
||||
create table PSWDPLUS_PASSWORD_HISTORY (
|
||||
ID uuid,
|
||||
VERSION integer not null,
|
||||
CREATE_TS timestamp,
|
||||
CREATED_BY varchar(50),
|
||||
UPDATE_TS timestamp,
|
||||
UPDATED_BY varchar(50),
|
||||
DELETE_TS timestamp,
|
||||
DELETED_BY varchar(50),
|
||||
--
|
||||
USER_ID uuid,
|
||||
CREATED_AT timestamp,
|
||||
PASSWORD_HASH varchar(255),
|
||||
--
|
||||
primary key (ID)
|
||||
)^
|
||||
-- end PSWDPLUS_PASSWORD_HISTORY
|
||||
Reference in New Issue
Block a user