summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorSanto Cariotti <santo@dcariotti.me>2024-09-10 13:27:51 +0200
committerSanto Cariotti <santo@dcariotti.me>2024-09-10 13:27:51 +0200
commita1ef3b1e7ef495864f98ed45ef398441be26e6da (patch)
tree51760054207f518492a406ba33d3fdf8fac58ddb /schema
parent07dc779a4a21bb6f90f048712becd89f0f1eff85 (diff)
Remove `OnFoot` moving activity
Diffstat (limited to 'schema')
-rw-r--r--schema/init.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/schema/init.sql b/schema/init.sql
index 9a6abee..7397619 100644
--- a/schema/init.sql
+++ b/schema/init.sql
@@ -9,7 +9,7 @@ CREATE TABLE users(
PRIMARY KEY (id)
);
-CREATE TYPE moving_activity AS ENUM ('InVehicle', 'OnFoot', 'Running', 'Walking', 'Still');
+CREATE TYPE moving_activity AS ENUM ('InVehicle', 'Running', 'Walking', 'Still');
CREATE TABLE positions(
id SERIAL NOT NULL,