Skip to content

Commit

Permalink
[COST-4947] Migration to remove account and region from ProviderInfra…
Browse files Browse the repository at this point in the history
…structureMap (#5077)
  • Loading branch information
cgoodfred authored Apr 30, 2024
1 parent 25a41eb commit 80d964b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions koku/api/migrations/0063_remove_infra_map_account_region.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.2.11 on 2024-04-30 14:10
from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("api", "0062_add_infra_map_account_region"),
]

operations = [
migrations.RemoveField(
model_name="providerinfrastructuremap",
name="infrastructure_account",
),
migrations.RemoveField(
model_name="providerinfrastructuremap",
name="infrastructure_region",
),
]

0 comments on commit 80d964b

Please sign in to comment.