又来改数据库了(

This commit is contained in:
suyiiyii 2024-09-08 18:12:00 +08:00
parent 7c9e191f40
commit ce1f1bbedb
2 changed files with 5 additions and 5 deletions

View File

@ -72,7 +72,7 @@ class Subscribe(Model):
class Cookie(Model):
id: Mapped[int] = mapped_column(primary_key=True)
platform_name: Mapped[str] = mapped_column(String(20))
site_name: Mapped[str] = mapped_column(String(100))
content: Mapped[str] = mapped_column(String(1024))
# 最后使用的时刻
last_usage: Mapped[datetime.datetime] = mapped_column(DateTime, default=datetime.datetime(1970, 1, 1))

View File

@ -1,8 +1,8 @@
"""empty message
Revision ID: fc2b8481bdde
Revision ID: be215495b122
Revises: f9baef347cc8
Create Date: 2024-09-05 19:31:59.366754
Create Date: 2024-09-08 18:12:43.540818
"""
@ -12,7 +12,7 @@ from sqlalchemy import Text
from sqlalchemy.dialects import postgresql
# revision identifiers, used by Alembic.
revision = "fc2b8481bdde"
revision = "be215495b122"
down_revision = "f9baef347cc8"
branch_labels = None
depends_on = None
@ -23,7 +23,7 @@ def upgrade() -> None:
op.create_table(
"nonebot_bison_cookie",
sa.Column("id", sa.Integer(), nullable=False),
sa.Column("platform_name", sa.String(length=20), nullable=False),
sa.Column("site_name", sa.String(length=100), nullable=False),
sa.Column("content", sa.String(length=1024), nullable=False),
sa.Column("last_usage", sa.DateTime(), nullable=False),
sa.Column("status", sa.String(length=20), nullable=False),