This commit is contained in:
Joshua Laymon
2025-08-12 21:53:03 -05:00
parent 97da3bd6c5
commit 2fb9e7c39c
31 changed files with 554 additions and 419 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
from django.db import migrations, models
import django.db.models.deletion
@@ -15,8 +14,8 @@ class Migration(migrations.Migration):
('application', models.TextField(blank=True)),
('scripture_raw', models.TextField(blank=True)),
('source', models.CharField(blank=True, max_length=255)),
('talk_title', models.CharField(blank=True, max_length=255)),
('talk_number', models.IntegerField(blank=True, null=True)),
('talk_title', models.CharField(blank=True, max_length=255)),
('entry_code', models.CharField(blank=True, db_index=True, max_length=64)),
('date_added', models.DateField(blank=True, null=True)),
('date_edited', models.DateField(blank=True, null=True)),