Projects/psql-admtools
Projects
/
psql-admtools
Archived
13
0
Fork 0
This repository has been archived on 2024-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
psql-admtools/tables.sql

16 lines
348 B
MySQL
Raw Normal View History

2007-02-13 21:57:45 +01:00
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()
);