add skeleton for dnscms
This commit is contained in:
20
dnscms/home/migrations/0005_association_logo.py
Normal file
20
dnscms/home/migrations/0005_association_logo.py
Normal file
@ -0,0 +1,20 @@
|
||||
# Generated by Django 5.0.3 on 2024-04-02 23:43
|
||||
|
||||
import django.db.models.deletion
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('home', '0004_association'),
|
||||
('wagtailimages', '0025_alter_image_file_alter_rendition_file'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='association',
|
||||
name='logo',
|
||||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user