adds database layout as file
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
5d88bf4bf8
commit
7659efad5f
13
docs/database.sql
Normal file
13
docs/database.sql
Normal file
@ -0,0 +1,13 @@
|
||||
CREATE TABLE IF NOT EXISTS sensor(
|
||||
sensorId INTEGER NOT NULL PRIMARY KEY,
|
||||
resolution REAL NOT NULL,
|
||||
accuracy REAL NOT NULL
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS dataPoint(
|
||||
dataPointId INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
|
||||
sensorFK INTEGER NOT NULL,
|
||||
timestamp INTEGER NOT NULL,
|
||||
value REAL NOT NULL,
|
||||
FOREIGN KEY(sensorFK) REFERENCES sensor(sensorId)
|
||||
);
|
Loading…
Reference in New Issue
Block a user