Skip to content

Commit

Permalink
Add backend_quota to fixture file
Browse files Browse the repository at this point in the history
  • Loading branch information
VoigtS committed Dec 17, 2024
1 parent 556376e commit be3962a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/api/fixtures/start-data-az-separated.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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, '');

0 comments on commit be3962a

Please sign in to comment.