12 lines
166 B
SQL
12 lines
166 B
SQL
-- Table: public.theme
|
|
|
|
-- DROP TABLE public.theme;
|
|
|
|
CREATE TABLE public.theme
|
|
(
|
|
the_name text NOT NULL,
|
|
the_filestyle text,
|
|
the_filebutton text
|
|
) WITH OIDS;
|
|
|
|
|