From f376ed0a8df310b8d04d742609f9b0f69b725c28 Mon Sep 17 00:00:00 2001 From: Luca Frosini Date: Mon, 15 Mar 2021 11:44:19 +0100 Subject: [PATCH] Fixed StorageUsageRecord table --- src/test/resources/StorageUsageRecordTable.sql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/test/resources/StorageUsageRecordTable.sql b/src/test/resources/StorageUsageRecordTable.sql index eaa7ab4..cef1347 100644 --- a/src/test/resources/StorageUsageRecordTable.sql +++ b/src/test/resources/StorageUsageRecordTable.sql @@ -13,5 +13,9 @@ CREATE TABLE "storageusagerecord"( provider_uri TEXT NOT NULL, operation_type operation_type NOT NULL, data_type data_type NOT NULL, - data_volume NUMERIC NOT NULL + data_volume NUMERIC NOT NULL, + operation_count INTEGER NOT NULL DEFAULT 1, + aggregated BOOLEAN NOT NULL DEFAULT true, + start_time TIMESTAMP WITH TIME ZONE NOT NULL, + end_time TIMESTAMP WITH TIME ZONE NOT NULL ); \ No newline at end of file