Markus Pesch
4931c63c10
changes: - Add postgres backend - Modified or added table attributes. UpdateDate, ForeignKeys, Booleans - Fix test for sqlite and postgres. Compare json instead the struct.
9 lines
536 B
SQL
9 lines
536 B
SQL
CREATE TABLE IF NOT EXISTS pressures (
|
|
id CHAR(36) PRIMARY KEY,
|
|
value NUMERIC(10,3) NOT NULL,
|
|
date TIMESTAMP NOT NULL,
|
|
sensor_id CHAR(36) NOT NULL,
|
|
creation_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
|
update_date TIMESTAMP,
|
|
FOREIGN KEY(sensor_id) REFERENCES sensors(sensor_id)
|
|
); |