Fix typo in DB schema

This commit is contained in:
Jan Eitzinger 2023-05-04 17:26:33 +02:00
parent 50cf2f57d1
commit 7491ae9e3c
2 changed files with 4 additions and 2 deletions

View File

@ -32,7 +32,8 @@ CREATE TABLE IF NOT EXISTS job (
net_data_vol_total REAL NOT NULL DEFAULT 0.0,
file_bw_avg REAL NOT NULL DEFAULT 0.0,
file_data_vol_total REAL NOT NULL DEFAULT 0.0,
UNIQUE (job_id, cluster, start_time);
UNIQUE (job_id, cluster, start_time)
);
CREATE TABLE IF NOT EXISTS tag (
id INTEGER PRIMARY KEY,

View File

@ -32,7 +32,8 @@ CREATE TABLE IF NOT EXISTS job (
net_data_vol_total REAL NOT NULL DEFAULT 0.0,
file_bw_avg REAL NOT NULL DEFAULT 0.0,
file_data_vol_total REAL NOT NULL DEFAULT 0.0,
UNIQUE (job_id, cluster, start_time);
UNIQUE (job_id, cluster, start_time)
);
CREATE TABLE IF NOT EXISTS tag (
id INTEGER PRIMARY KEY,