MyFirstUDRKit/test/testudrkit.ddl
2023-01-25 14:54:48 +01:00

13 lines
177 B
Plaintext

/*
create tables for test db
*/
create sequence test_div_seq;
commit;
create domain D_ID as BIGINT;
create table test_div(
test_div_id d_id generated always as identity
);