Add migrations

This commit is contained in:
2024-12-11 06:01:09 +01:00
parent 42e9a5a7ed
commit daead80fdc
16 changed files with 7897 additions and 18 deletions

View File

@ -1,8 +1,11 @@
from __future__ import annotations
import logging
from datetime import datetime
from typing import Any
from typing import TYPE_CHECKING, Any
from django.db import models
if TYPE_CHECKING:
from django.db import models
logger: logging.Logger = logging.getLogger(__name__)