- Add configuration files for packaging - Precommit now uses ruff Co-authored-by: bkfox <thomas bkfox net> Reviewed-on: #127
		
			
				
	
	
		
			18 lines
		
	
	
		
			418 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			418 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 4.1 on 2022-12-09 18:13
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
    dependencies = [
 | 
						|
        ("aircox", "0009_track_year"),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.AlterField(
 | 
						|
            model_name="track",
 | 
						|
            name="album",
 | 
						|
            field=models.CharField(blank=True, max_length=128, null=True, verbose_name="album"),
 | 
						|
        ),
 | 
						|
    ]
 |