Files
vrobbler/vrobbler/apps/scrobbles/migrations/0079_retroarchimport_lrtl_file.py
Colin Powell d3146433f2
All checks were successful
build & deploy / test (push) Successful in 1m48s
build & deploy / build-and-deploy (push) Successful in 26s
[tasks] Move retroarch importing to webdav
2026-05-22 11:58:09 -04:00

26 lines
662 B
Python

# Generated by Django 4.2.29 on 2026-05-22 15:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0078_trailgpximport"),
]
operations = [
migrations.AddField(
model_name="retroarchimport",
name="lrtl_file",
field=models.FileField(
blank=True, null=True, upload_to="scrobbles/lrtl_file/"
),
),
migrations.AddField(
model_name="retroarchimport",
name="original_filename",
field=models.CharField(blank=True, max_length=255, null=True),
),
]