Added migrations

This commit is contained in:
2022-11-01 17:43:12 +03:00
parent a0ba00b23e
commit ad1f99e8c9
22 changed files with 673 additions and 0 deletions
@@ -0,0 +1,19 @@
# Generated by Django 3.2.12 on 2022-07-14 07:31
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('faerun_calendar', '0012_calendardata_leap_month'),
]
operations = [
migrations.AlterField(
model_name='calendardata',
name='current_month',
field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='faerun_calendar.monthdata'),
),
]