Skip to content

Commit

Permalink
Run makemigrations
Browse files Browse the repository at this point in the history
  • Loading branch information
hnryjmes committed Dec 16, 2024
1 parent 7d37ab8 commit 666d91d
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Generated by Django 4.2.16 on 2024-12-16 11:18

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("cases", "0073_licencedecision_denial_reasons"),
]

operations = [
migrations.RemoveField(
model_name="advice",
name="goods_type",
),
migrations.DeleteModel(
name="GoodCountryDecision",
),
]
5 changes: 0 additions & 5 deletions api/cases/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,6 @@
views.FinalAdviceDocuments.as_view(),
name="final_advice_documents",
),
path(
"<uuid:pk>/goods-countries-decisions/",
views.GoodsCountriesDecisions.as_view(),
name="goods_countries_decisions",
),
path(
"<uuid:pk>/ecju-queries/",
views.ECJUQueries.as_view(),
Expand Down
1 change: 1 addition & 0 deletions api/conf/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@
"api.documents",
"api.flags",
"api.goods",
"api.goodstype",
"api.gov_users",
"api.letter_templates",
"api.licences",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Generated by Django 4.2.16 on 2024-12-16 11:18

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("cases", "0074_remove_advice_goods_type_delete_goodcountrydecision"),
("goodstype", "0011_alter_goodstype_application_and_more"),
]

operations = [
migrations.RemoveField(
model_name="goodstypedocument",
name="document_ptr",
),
migrations.RemoveField(
model_name="goodstypedocument",
name="goods_type",
),
migrations.DeleteModel(
name="GoodsType",
),
migrations.DeleteModel(
name="GoodsTypeDocument",
),
]

0 comments on commit 666d91d

Please sign in to comment.