From b0dbec2e1e496e29551dcb01a85328f8982f026f Mon Sep 17 00:00:00 2001 From: Eric Biagiotti Date: Mon, 25 Mar 2019 16:17:37 -0400 Subject: [PATCH] 14484: Updates the db structure after db:migrate Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- services/api/db/structure.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/services/api/db/structure.sql b/services/api/db/structure.sql index f766f33e1b..1eefc13007 100644 --- a/services/api/db/structure.sql +++ b/services/api/db/structure.sql @@ -175,7 +175,9 @@ CREATE TABLE public.collections ( storage_classes_confirmed_at timestamp without time zone, current_version_uuid character varying, version integer DEFAULT 1 NOT NULL, - preserve_version boolean DEFAULT false + preserve_version boolean DEFAULT false, + file_count integer DEFAULT 0 NOT NULL, + file_size_total integer DEFAULT 0 NOT NULL ); @@ -3220,3 +3222,5 @@ INSERT INTO schema_migrations (version) VALUES ('20181213183234'); INSERT INTO schema_migrations (version) VALUES ('20190214214814'); +INSERT INTO schema_migrations (version) VALUES ('20190322174136'); + -- 2.30.2