push to docker hub too

This commit is contained in:
2023-11-09 17:40:49 +01:00
parent 46d840e9de
commit ef84704340
2 changed files with 17 additions and 8 deletions

View File

@ -1,5 +1,5 @@
create database cem_monitoring;
-- create extension timescaledb;
create extension timescaledb;
@ -22,7 +22,7 @@ create table variable_t (
);
create table measurement_t (
time timestamp without time zone not null,
time timestamptz not null,
variable integer references variable_t (id),
value float
);