forked from rc/aircox

- Add configuration files for packaging - Precommit now uses ruff Co-authored-by: bkfox <thomas bkfox net> Reviewed-on: rc/aircox#127
18 lines
435 B
Python
18 lines
435 B
Python
# Generated by Django 4.1 on 2022-12-09 13:50
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("aircox", "0008_alter_diffusion_options_track_album_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="track",
|
|
name="year",
|
|
field=models.IntegerField(blank=True, null=True, verbose_name="year"),
|
|
),
|
|
]
|