mirror of
https://github.com/xfarrow/blink
synced 2025-02-16 08:00:35 +01:00
16 lines
354 B
SQL
16 lines
354 B
SQL
-- Table: public.Organization
|
|
|
|
-- DROP TABLE IF EXISTS public."Organization";
|
|
|
|
CREATE TABLE IF NOT EXISTS public."Organization"
|
|
(
|
|
id SERIAL PRIMARY KEY,
|
|
name character varying(128) NOT NULL,
|
|
location character varying,
|
|
description text
|
|
)
|
|
|
|
TABLESPACE pg_default;
|
|
|
|
ALTER TABLE IF EXISTS public."Organization"
|
|
OWNER to pg_database_owner; |