-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[COST-4242] process and track metered RHEL by resource id (#4713)
* process and track metered RHEL by resource id for latest timestamp
- Loading branch information
Showing
5 changed files
with
238 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Generated by Django 3.2.21 on 2023-10-04 10:09 | ||
from django.db import migrations | ||
from django.db import models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("reporting", "0308_ocpusagelineitemdailysummary_all_labels"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="subslastprocessed", | ||
name="resource_id", | ||
field=models.TextField(default=""), | ||
), | ||
migrations.AlterUniqueTogether( | ||
name="subslastprocessed", | ||
unique_together={("source_uuid", "resource_id", "year", "month")}, | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.