diff --git a/docs/changelog.rst b/docs/changelog.rst index 2626c54..4972f37 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,8 @@ Changelog ========= +* :bug:`-` fix squashed migration for disk space statistics + * :release:`0.14.0 <2023-07-22>` * :feature:`-` add disk space statistics diff --git a/gnuviechadmin/hostingpackages/migrations/0007_add_disk_usage_table.py b/gnuviechadmin/hostingpackages/migrations/0007_add_disk_usage_table.py index 7ba3753..dd88560 100644 --- a/gnuviechadmin/hostingpackages/migrations/0007_add_disk_usage_table.py +++ b/gnuviechadmin/hostingpackages/migrations/0007_add_disk_usage_table.py @@ -6,11 +6,6 @@ from django.db import migrations, models class Migration(migrations.Migration): - replaces = [ - ("hostingpackages", "0007_add_disk_usage_table"), - ("hostingpackages", "0008_add_default_for_used_kb_change_uniqueness"), - ] - dependencies = [ ("hostingpackages", "0006_auto_20150125_1510"), ]