drbotzo-idlerpg/idlerpg/migrations/0005_alter_character_status.py
Brian S. Stephan f941762f26
get rid of the online character status, it's not necessary
Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-05-12 23:36:25 -05:00

19 lines
539 B
Python

# Generated by Django 5.0.5 on 2024-05-13 04:35
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('idlerpg', '0004_remove_character_no_characters_with_same_name_per_game_and_more'),
]
operations = [
migrations.AlterField(
model_name='character',
name='status',
field=models.CharField(choices=[('DISABLED', 'Disabled'), ('LOGGEDIN', 'Logged in'), ('OFFLINE', 'Offline')], default='OFFLINE', max_length=8),
),
]