13996: Can now use database info from config.yml
[arvados.git] / services / api / db / structure.sql
index 95c44f7f665b5d59864bf994eb041f19c3e96b7f..ebe06b34843aec8be5427e624e21db2653aef337 100644 (file)
@@ -187,7 +187,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 bigint DEFAULT 0 NOT NULL
 );
 
 
@@ -3056,6 +3058,6 @@ INSERT INTO "schema_migrations" (version) VALUES
 ('20181005192222'),
 ('20181011184200'),
 ('20181213183234'),
-('20190214214814');
-
+('20190214214814'),
+('20190322174136');