Files
CloudTAK/api/migrations/0081_fluffy_loners.sql
2024-12-31 07:52:56 -07:00

8 lines
250 B
SQL

CREATE TABLE "profile_interests" (
"id" serial PRIMARY KEY NOT NULL,
"name" text NOT NULL,
"bounds" GEOMETRY(POLYGON, 4326),
"created" timestamp with time zone DEFAULT Now() NOT NULL,
"updated" timestamp with time zone DEFAULT Now() NOT NULL
);