19 lines
539 B
Python
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),
|
|
),
|
|
]
|