Makes extra content optional

This commit is contained in:
Mouse Reeve
2021-05-20 12:36:42 -07:00
parent 952eceb243
commit cefc5994a6
5 changed files with 81 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# Generated by Django 3.2 on 2021-05-19 22:16
# Generated by Django 3.2 on 2021-05-20 19:34
import bookwyrm.models.fields
from django.conf import settings
@ -36,7 +36,7 @@ class Migration(migrations.Migration):
),
),
("preview", models.CharField(max_length=255)),
("content", models.TextField()),
("content", models.TextField(blank=True, null=True)),
("event_date", models.DateTimeField(blank=True, null=True)),
("start_date", models.DateTimeField(blank=True, null=True)),
("end_date", models.DateTimeField(blank=True, null=True)),