Fix a RuntimeWarning introduced in Django 5 (#29)

This commit is contained in:
2024-01-20 22:08:10 +01:00
committed by GitHub
parent 8400a5acd3
commit 4428b8c11d
7 changed files with 147 additions and 12 deletions

View File

@@ -0,0 +1,16 @@
# Generated by Django 5.0.1 on 2024-01-20 21:02
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("portal", "0015_siteconfiguration_use_cdn"),
]
operations = [
migrations.RemoveField(
model_name="siteconfiguration",
name="site_name",
),
]