From e0a65bfd25beddcf7c2209b7b7d1d15e104bfef5 Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Sat, 3 Aug 2024 00:50:16 +0100 Subject: [PATCH] Update V1__init.sql --- backend/src/main/resources/db/migration/V1__init.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/main/resources/db/migration/V1__init.sql b/backend/src/main/resources/db/migration/V1__init.sql index e39237552..0496d3032 100644 --- a/backend/src/main/resources/db/migration/V1__init.sql +++ b/backend/src/main/resources/db/migration/V1__init.sql @@ -197,6 +197,7 @@ create table seqset_records ( create table seqset_to_records ( seqset_record_id bigserial not null, seqset_id text not null, + test text not null, seqset_version int8 not null, primary key (seqset_record_id, seqset_id, seqset_version), @@ -216,3 +217,4 @@ create table audit_log ( timestamp timestamp not null default now(), description text not null ); +