Skip to content

Commit ae263b8

Browse files
authored
[COST-4930] Alter max_length for instance_name field (#5123)
1 parent 27437be commit ae263b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: koku/reporting/provider/aws/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ class Meta:
207207
organizational_unit = models.ForeignKey("AWSOrganizationalUnit", on_delete=models.SET_NULL, null=True)
208208
usage_account_id = models.CharField(max_length=50, null=False)
209209
resource_id = models.CharField(max_length=256, null=False)
210-
instance_name = models.CharField(max_length=50, null=True)
210+
instance_name = models.CharField(max_length=256, null=True)
211211
instance_type = models.CharField(max_length=50, null=True)
212212
operating_system = models.CharField(max_length=50, null=True)
213213
availability_zone = models.CharField(max_length=50, null=True)

0 commit comments

Comments
 (0)