[boardgames] Hash lrtl files and only import if changed
All checks were successful
build & deploy / test (push) Successful in 2m3s
build & deploy / build-and-deploy (push) Successful in 33s

This commit is contained in:
2026-05-22 12:25:42 -04:00
parent 26176ccd73
commit c5f1ee2d64
3 changed files with 48 additions and 1 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.2.29 on 2026-05-22 16:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("scrobbles", "0079_retroarchimport_lrtl_file"),
]
operations = [
migrations.AddField(
model_name="retroarchimport",
name="files_hash",
field=models.CharField(blank=True, max_length=64, null=True),
),
]