Select Git revision
-
Marco Ciotola authored
Example: RemovedInDjango19Warning: Model class helios.models.Voter doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before its application was loaded. This will no longer be supported in Django 1.9. (cherry picked from commit 693acef9e4c3b093d5bf2bc1655e6f53a6dd4007)
Marco Ciotola authoredExample: RemovedInDjango19Warning: Model class helios.models.Voter doesn't declare an explicit app_label and either isn't in an application in INSTALLED_APPS or else was imported before its application was loaded. This will no longer be supported in Django 1.9. (cherry picked from commit 693acef9e4c3b093d5bf2bc1655e6f53a6dd4007)
0071_rename_date_mainarticlepage_timestamp.py 378 B
# Generated by Django 4.1.10 on 2024-01-18 19:00
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("main", "0070_alter_mainarticlepage_date"),
]
operations = [
migrations.RenameField(
model_name="mainarticlepage",
old_name="date",
new_name="timestamp",
),
]