19 lines
442 B
Python
19 lines
442 B
Python
# 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'),
|
|
),
|
|
]
|