summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-08-22 22:45:15 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-08-22 22:45:15 +0200
commitecb99e08531ff4d22e1a2204989e848347b3a756 (patch)
treea6273fe1e2d5ca1ef19aad71fa659a42961e8da4 /schema
parentfc51ff9e22a809e257ae92f12272f1dbcb31f594 (diff)
Add field `moving activity`
Following https://developers.google.com/android/reference/com/google/android/gms/location/DetectedActivity
Diffstat (limited to 'schema')
-rw-r--r--schema/init.sql3
1 files changed, 3 insertions, 0 deletions
diff --git a/schema/init.sql b/schema/init.sql
index f2bc431..682431c 100644
--- a/schema/init.sql
+++ b/schema/init.sql
@@ -6,11 +6,14 @@ CREATE TABLE users(
PRIMARY KEY (id)
);
+CREATE TYPE moving_activity AS ENUM ('InVehicle', 'OnFoot', 'Running', 'Walking', 'Still');
+
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,
+ activity moving_activity NOT NULL,
PRIMARY KEY(id),
CONSTRAINT fk_users_id
FOREIGN KEY(user_id) REFERENCES users(id)