Skip to content

Commit 0bb41a8

Browse files
authored
Merge pull request #22 from ivellios/default_price_and_auto_add_now
fix: added missing migration
2 parents aa112aa + e28f16b commit 0bb41a8

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Generated by Django 5.2.5 on 2026-01-24 12:58
2+
3+
import datetime
4+
5+
from django.db import migrations, models
6+
7+
8+
class Migration(migrations.Migration):
9+
dependencies = [
10+
("games", "0006_alter_gameonplatform_added_and_more"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="gameonplatform",
16+
name="added",
17+
field=models.DateField(blank=True, default=datetime.date.today, null=True),
18+
),
19+
]

0 commit comments

Comments
 (0)