mirror of
https://github.com/xfarrow/blink
synced 2025-04-03 15:11:01 +02:00
15 lines
286 B
SQL
15 lines
286 B
SQL
-- Table: public.Tag
|
|
|
|
-- DROP TABLE IF EXISTS public."Tag";
|
|
|
|
CREATE TABLE IF NOT EXISTS public."Tag"
|
|
(
|
|
id SERIAL,
|
|
tag character varying(256) NOT NULL,
|
|
CONSTRAINT "Tag_pkey" PRIMARY KEY (id)
|
|
)
|
|
|
|
TABLESPACE pg_default;
|
|
|
|
ALTER TABLE IF EXISTS public."Tag"
|
|
OWNER to postgres; |