summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-22 22:25:57 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-22 22:26:24 +0200
commitfc51ff9e22a809e257ae92f12272f1dbcb31f594 (patch)
treeb1e0fcd8e9ca931f7d89b976eaf2a40388e98f6c /schema
parent8738cf2c6b1ce9f99e3399f35ba9f49832ffed52 (diff)
Add position type and query on it
Diffstat (limited to 'schema')
-rw-r--r--schema/init.sql10
1 files changed, 10 insertions, 0 deletions
diff --git a/schema/init.sql b/schema/init.sql
index 38d1e80..f2bc431 100644
--- a/schema/init.sql
+++ b/schema/init.sql
@@ -5,3 +5,13 @@ CREATE TABLE users(
is_admin boolean default false,
PRIMARY KEY (id)
);
+
+CREATE TABLE positions(
+ id SERIAL NOT NULL,
+ user_id INTEGER NOT NULL,
+ created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
+ location GEOGRAPHY(Point, 4326) NOT NULL,
+ PRIMARY KEY(id),
+ CONSTRAINT fk_users_id
+ FOREIGN KEY(user_id) REFERENCES users(id)
+);