diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-09-10 13:27:51 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-09-10 13:27:51 +0200 |
commit | a1ef3b1e7ef495864f98ed45ef398441be26e6da (patch) | |
tree | 51760054207f518492a406ba33d3fdf8fac58ddb /schema | |
parent | 07dc779a4a21bb6f90f048712becd89f0f1eff85 (diff) |
Remove `OnFoot` moving activity
Diffstat (limited to 'schema')
-rw-r--r-- | schema/init.sql | 2 |
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, |