       °Õ§j                    ¯ß]j     Ç§j    6Ãïñ  ÚÊ                                                                                                                                 Accept-Encoding,User-Agent                                                                                                      ÊDæZúGEÙþtq8FFÒ‡    
KEY: https://avaliareassessoria.com.br/Ven-SS/root/proc/2/root/opt/imunify360/venv/lib/python3.11/site-packages/peewee_migrate/models.py
HTTP/1.1 200 OK
Date: Mon, 14 Sep 2026 10:08:32 GMT
Server: Apache
Last-Modified: Mon, 20 Jul 2026 08:43:27 GMT
Accept-Ranges: bytes
Content-Length: 466
Vary: Accept-Encoding,User-Agent
Connection: close
Content-Type: text/plain

from __future__ import annotations

import datetime as dt
from typing import Final

import peewee as pw


class MigrateHistory(pw.Model):
    """Presents the migrations in database."""

    id = pw.AutoField()  # noqa: A003
    name = pw.CharField()
    migrated_at = pw.DateTimeField(default=dt.datetime.utcnow)

    def __str__(self) -> str:
        """String representation."""
        return self.name  # type: ignore[]


MIGRATE_TABLE: Final = "migratehistory"
