GLE-Tabellen-Nutzerhinweise
Aus kvwmap
CREATE TABLE hinweise
(
hinweis text,
nutzer character varying(50),
stelle_id integer,
created_at timestamp without time zone NOT NULL DEFAULT now(),
startdatum date NOT NULL DEFAULT ('now'::text)::date,
dauer integer NOT NULL DEFAULT 2
)
WITH (
OIDS=TRUE
);