mirror of
https://github.com/dfpc-coe/CloudTAK.git
synced 2025-12-23 14:10:18 +00:00
8 lines
250 B
SQL
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
|
|
);
|