I think we will need to distinguish in the database characters whose players are online but not yet logged in, so start building for that now Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
		
			
				
	
	
		
			19 lines
		
	
	
		
			547 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			547 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 5.0.5 on 2024-05-10 21:03
 | |
| 
 | |
| from django.db import migrations, models
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('idlerpg', '0002_character_player_must_have_unique_character_names'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AlterField(
 | |
|             model_name='character',
 | |
|             name='status',
 | |
|             field=models.CharField(choices=[('DISABLED', 'Disabled'), ('LOGGEDIN', 'Logged in'), ('OFFLINE', 'Offline'), ('ONLINE', 'Online')], default='OFFLINE', max_length=8),
 | |
|         ),
 | |
|     ]
 |