19 lines
510 B
Python
19 lines
510 B
Python
# Generated by Django 6.0 on 2026-04-01 17:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('epic', '0017_tableseat_significator_fk'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='tarotcard',
|
|
name='suit',
|
|
field=models.CharField(blank=True, choices=[('WANDS', 'Wands'), ('CUPS', 'Cups'), ('SWORDS', 'Swords'), ('PENTACLES', 'Pentacles')], max_length=10, null=True),
|
|
),
|
|
]
|