Skip to content
Snippets Groups Projects
Commit e8991e22 authored by Sonia Zorba's avatar Sonia Zorba
Browse files

Set creation_time default value to CURRENT_TIMESTAMP

parent 6f0f9a52
No related branches found
No related tags found
No related merge requests found
Pipeline #908 passed
...@@ -8,7 +8,7 @@ CREATE TABLE job ( ...@@ -8,7 +8,7 @@ CREATE TABLE job (
phase JobPhaseEnum not null, phase JobPhaseEnum not null,
start_time timestamp, start_time timestamp,
end_time timestamp, end_time timestamp,
creation_time timestamp, creation_time timestamp default CURRENT_TIMESTAMP,
job_info jsonb, job_info jsonb,
results jsonb, results jsonb,
primary key(job_id) primary key(job_id)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment