0fc4aa7c28
Add timezone for the columns creation_date and update_date, otherwise it's difficult to compare the times correctly in the unit test. Furthermore the default value of the creation_date will now be defined by the postgres implementation of the database interface.
14 lines
697 B
SQL
14 lines
697 B
SQL
CREATE TABLE IF NOT EXISTS pressures (
|
|
id CHAR(36) CONSTRAINT pk_pressures PRIMARY KEY,
|
|
value NUMERIC(10,3) NOT NULL,
|
|
date TIMESTAMP WITH TIME ZONE NOT NULL,
|
|
sensor_id CHAR(36) NOT NULL,
|
|
creation_date TIMESTAMP WITH TIME ZONE DEFAULT CURRENT_TIMESTAMP NOT NULL,
|
|
update_date TIMESTAMP WITH TIME ZONE
|
|
);
|
|
|
|
ALTER TABLE pressures
|
|
ADD FOREIGN KEY (sensor_id)
|
|
REFERENCES sensors(sensor_id)
|
|
ON DELETE CASCADE
|
|
ON UPDATE CASCADE; |