From be3962a325c805cd8b336eb6227f744da2fbd3fa Mon Sep 17 00:00:00 2001 From: VoigtS Date: Tue, 17 Dec 2024 16:09:31 +0100 Subject: [PATCH] Add backend_quota to fixture file --- internal/api/fixtures/start-data-az-separated.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/api/fixtures/start-data-az-separated.sql b/internal/api/fixtures/start-data-az-separated.sql index 20ef4636..9876b155 100644 --- a/internal/api/fixtures/start-data-az-separated.sql +++ b/internal/api/fixtures/start-data-az-separated.sql @@ -9,5 +9,5 @@ INSERT INTO project_services (id, project_id, type, scraped_at, rates_scraped_at INSERT INTO project_resources (id, service_id, name, quota, backend_quota) VALUES (1, 1, 'capacity_portion', NULL, NULL); -- AZ separated resource does not include any az. -INSERT INTO project_az_resources (id, resource_id, az, quota, usage, physical_usage, subresources) VALUES (1, 1, 'az-one', 5, 1, NULL, ''); -INSERT INTO project_az_resources (id, resource_id, az, quota, usage, physical_usage, subresources) VALUES (2, 1, 'az-two', 5, 1, NULL, ''); +INSERT INTO project_az_resources (id, resource_id, az, backend_quota, quota, usage, physical_usage, subresources) VALUES (1, 1, 'az-one', 5, 5, 1, NULL, ''); +INSERT INTO project_az_resources (id, resource_id, az, backend_quota, quota, usage, physical_usage, subresources) VALUES (2, 1, 'az-two', 5, 5, 1, NULL, '');