Skip to content

Commit 6a6212b

Browse files
committed
Added new migration for Game itchGamePlayableID rename
1 parent fcf4170 commit 6a6212b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Generated by Django 5.1.15 on 2026-02-21 06:56
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("game_dev", "0026_merge_20260214_1420"),
10+
]
11+
12+
operations = [
13+
migrations.RemoveField(
14+
model_name="game",
15+
name="itchGameEmbedID",
16+
),
17+
migrations.AddField(
18+
model_name="game",
19+
name="itchGamePlayableID",
20+
field=models.PositiveBigIntegerField(
21+
blank=True,
22+
default=None,
23+
help_text="If a game is playable and has a web demo stored on itch.io, please enter the embed developer ID",
24+
null=True,
25+
),
26+
),
27+
]

0 commit comments

Comments
 (0)