This commit is contained in:
Ross
2025-12-04 22:49:16 +00:00
parent 23f7caa937
commit be1fea5fd4
16 changed files with 240 additions and 52 deletions
+18
View File
@@ -0,0 +1,18 @@
# Generated by Django 6.0 on 2025-12-04 22:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cards', '0002_backgroundimage'),
]
operations = [
migrations.AddField(
model_name='dinosaur',
name='facts',
field=models.TextField(blank=True, help_text='One fact per line; shown as bullet points on the card'),
),
]