You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
call2025/call/migrations/0002_alter_creature_message.py

19 lines
388 B
Python

# Generated by Django 5.1.5 on 2025-01-21 07:51
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('call', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='creature',
name='message',
field=models.TextField(blank=True, max_length=512),
),
]