16 lines
348 B
MySQL
16 lines
348 B
MySQL
|
CREATE TABLE psqluseradm (
|
||
|
id serial NOT NULL,
|
||
|
uid integer,
|
||
|
username character varying(128),
|
||
|
ts timestamp without time zone DEFAULT now()
|
||
|
);
|
||
|
|
||
|
CREATE TABLE psqldbadm (
|
||
|
id serial NOT NULL,
|
||
|
uid integer,
|
||
|
dbname character varying(128),
|
||
|
"owner" character varying(128),
|
||
|
ts timestamp without time zone DEFAULT now()
|
||
|
);
|
||
|
|