Initial retroarch import code

This commit is contained in:
2023-05-24 17:12:28 -04:00
parent 6753c3717f
commit 6c56cfab85
5 changed files with 151 additions and 6 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.7 on 2023-05-24 19:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videogames", "0010_alter_videogame_genre"),
]
operations = [
migrations.AddField(
model_name="videogame",
name="retroarch_name",
field=models.CharField(blank=True, max_length=255, null=True),
),
]