add media
This commit is contained in:
parent
c2f521095e
commit
a59093d7d2
3 changed files with 24 additions and 4 deletions
18
app/event/migrations/0006_event_media_caption.py
Normal file
18
app/event/migrations/0006_event_media_caption.py
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.9 on 2021-11-19 14:22
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('event', '0005_event_media'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='event',
|
||||
name='media_caption',
|
||||
field=models.TextField(blank=True, default='', null=True),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue