forked from rc/aircox
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			893 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			893 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.1 on 2023-01-25 15:18
 | 
						|
 | 
						|
import aircox.models.sound
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("aircox", "0011_usersettings"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="sound",
 | 
						|
            name="file",
 | 
						|
            field=models.FileField(
 | 
						|
                db_index=True,
 | 
						|
                max_length=256,
 | 
						|
                unique=True,
 | 
						|
                upload_to=aircox.models.sound.Sound._upload_to,
 | 
						|
                verbose_name="file",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="station",
 | 
						|
            name="default",
 | 
						|
            field=models.BooleanField(
 | 
						|
                default=False,
 | 
						|
                help_text="use this station as the main one.",
 | 
						|
                verbose_name="default station",
 | 
						|
            ),
 | 
						|
        ),
 | 
						|
    ]
 |