steam sync
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2026-04-02 21:11:54 +03:00
parent 457b8c8443
commit f820e86277
5 changed files with 88 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('backlogger', '0009_userprofile'),
]
operations = [
migrations.AddField(
model_name='item',
name='steam_appid',
field=models.IntegerField(blank=True, null=True),
),
]