Skip to content

Commit

Permalink
[COST-3394] Migration to clean up old column for cost category. (#4821)
Browse files Browse the repository at this point in the history
  • Loading branch information
myersCody authored Jan 9, 2024
1 parent 62481c7 commit 3de49ac
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Generated by Django 3.2.22 on 2023-12-04 20:26
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("reporting", "0315_openshiftcostcategorynamespace"),
]

operations = [
migrations.RemoveField(
model_name="openshiftcostcategory",
name="namespace",
),
]
1 change: 0 additions & 1 deletion koku/reporting/provider/ocp/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,6 @@ class Meta:
description = models.TextField()
source_type = models.TextField()
system_default = models.BooleanField(null=False, default=False)
namespace = ArrayField(models.TextField())
label = ArrayField(models.TextField())


Expand Down

0 comments on commit 3de49ac

Please sign in to comment.