CKEditor Migration Successfully Completed
This commit is contained in:
parent
78fadaa1da
commit
b860590127
11 changed files with 148 additions and 56 deletions
19
app/bird/migrations/0007_alter_fallenbird_status.py
Normal file
19
app/bird/migrations/0007_alter_fallenbird_status.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 5.2.2 on 2025-06-07 18:05
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('bird', '0006_alter_fallenbird_options_alter_fallenbird_age_and_more'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='fallenbird',
|
||||
name='status',
|
||||
field=models.ForeignKey(blank=True, default=1, null=True, on_delete=django.db.models.deletion.CASCADE, to='bird.birdstatus', verbose_name='Status'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue