Fix redundant tick field

This commit is contained in:
2023-03-12 10:54:09 -04:00
parent f6c1a459d4
commit 95b625cec2
31 changed files with 336 additions and 104 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.5 on 2023-03-12 01:01
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("videogames", "0006_videogame_summary_alter_videogame_platforms"),
]
operations = [
migrations.AlterField(
model_name="videogame",
name="run_time",
field=models.IntegerField(blank=True, null=True),
),
]

View File

@ -0,0 +1,18 @@
# Generated by Django 4.1.5 on 2023-03-12 01:21
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("videogames", "0007_alter_videogame_run_time"),
]
operations = [
migrations.RenameField(
model_name="videogame",
old_name="run_time",
new_name="run_time_seconds",
),
]