renamed django app folder to backend

This commit is contained in:
Simon
2024-08-03 21:58:22 +02:00
parent 1d07386a06
commit a5b492fecd
124 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,34 @@
# Generated by Django 5.0.7 on 2024-07-22 18:39
import django.db.models.deletion
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
("django_celery_beat", "0018_improve_crontab_helptext"),
]
operations = [
migrations.CreateModel(
name="CustomPeriodicTask",
fields=[
(
"periodictask_ptr",
models.OneToOneField(
auto_created=True,
on_delete=django.db.models.deletion.CASCADE,
parent_link=True,
primary_key=True,
serialize=False,
to="django_celery_beat.periodictask",
),
),
("task_config", models.JSONField(default=dict)),
],
bases=("django_celery_beat.periodictask",),
),
]