initial import
This commit is contained in:
17
modules/core/db/init/postgres/01.ext-create-db.sql
Normal file
17
modules/core/db/init/postgres/01.ext-create-db.sql
Normal file
@ -0,0 +1,17 @@
|
||||
-- begin TMSEXT_FOO
|
||||
create table TMSEXT_FOO (
|
||||
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),
|
||||
--
|
||||
NAME varchar(255) not null,
|
||||
AGE integer not null,
|
||||
--
|
||||
primary key (ID)
|
||||
)^
|
||||
-- end TMSEXT_FOO
|
||||
Reference in New Issue
Block a user