Fix created_at using auto_created instead of auto_now_add
This commit is contained in:
25
core/migrations/0004_alter_game_created_at.py
Normal file
25
core/migrations/0004_alter_game_created_at.py
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Generated by Django 5.1.4 on 2024-12-18 22:35
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from django.db.migrations.operations.base import Operation
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
"""Fix created_at using auto_created instead of auto_now_add."""
|
||||||
|
|
||||||
|
dependencies: list[tuple[str, str]] = [
|
||||||
|
("core", "0003_alter_benefit_created_at_and_more"),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations: list[Operation] = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name="game",
|
||||||
|
name="created_at",
|
||||||
|
field=models.DateTimeField(auto_now_add=True, help_text="When the game was first added to the database."),
|
||||||
|
),
|
||||||
|
]
|
@ -133,7 +133,7 @@ class Game(auto_prefetch.Model):
|
|||||||
# Django fields
|
# Django fields
|
||||||
# "155409827"
|
# "155409827"
|
||||||
twitch_id = models.TextField(primary_key=True, help_text="The Twitch ID of the game.")
|
twitch_id = models.TextField(primary_key=True, help_text="The Twitch ID of the game.")
|
||||||
created_at = models.DateTimeField(auto_created=True, help_text="When the game was first added to the database.")
|
created_at = models.DateTimeField(auto_now_add=True, help_text="When the game was first added to the database.")
|
||||||
modified_at = models.DateTimeField(auto_now=True, help_text="When the game was last modified.")
|
modified_at = models.DateTimeField(auto_now=True, help_text="When the game was last modified.")
|
||||||
|
|
||||||
# Twitch fields
|
# Twitch fields
|
||||||
|
Reference in New Issue
Block a user