Matching model, table and schema

This commit is contained in:
2023-07-21 20:15:06 +02:00
parent fff33c1e21
commit 9fd99acf2e
3 changed files with 21 additions and 20 deletions

View File

@@ -2,9 +2,9 @@
CREATE TABLE antennas (
id VARCHAR(17) PRIMARY KEY,
tssi DOUBLE PRECISION,
pos_x DOUBLE PRECISION,
pos_y DOUBLE PRECISION,
pos_z DOUBLE PRECISION,
tssi DOUBLE PRECISION NOT NULL,
pos_x DOUBLE PRECISION NOT NULL,
pos_y DOUBLE PRECISION NOT NULL,
pos_z DOUBLE PRECISION NOT NULL,
comment TEXT
);