add: store template

This commit is contained in:
Toolf
2024-02-05 18:01:57 +02:00
parent 1f92b43879
commit abd6bf0abe
8 changed files with 298 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
CREATE TABLE processed_agent_data (
id SERIAL PRIMARY KEY,
road_state VARCHAR(255) NOT NULL,
user_id INTEGER NOT NULL,
x FLOAT,
y FLOAT,
z FLOAT,
latitude FLOAT,
longitude FLOAT,
timestamp TIMESTAMP
);