court/initdb/01_table.sql

6 lines
133 B
MySQL
Raw Normal View History

2024-03-28 11:29:32 +01:00
DROP TABLE IF EXISTS "court";
CREATE TABLE "public"."court" (
"id" text NOT NULL,
"url" text NOT NULL
) WITH (oids = false);