altocompta/sql/mod1/modeledef.sql
2004-09-22 19:21:57 +00:00

13 lines
257 B
SQL

-- Table: public.modeledef
-- DROP TABLE public.modeledef;
CREATE TABLE public.modeledef
(
mod_id int4 NOT NULL DEFAULT nextval('s_modid'::text),
mod_name text NOT NULL,
mod_desc text,
CONSTRAINT modeledef_pkey PRIMARY KEY (mod_id)
) WITH OIDS;