mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-04 02:26:11 +08:00
✨ 又来改数据库了(
This commit is contained in:
parent
7c9e191f40
commit
ce1f1bbedb
@ -72,7 +72,7 @@ class Subscribe(Model):
|
|||||||
|
|
||||||
class Cookie(Model):
|
class Cookie(Model):
|
||||||
id: Mapped[int] = mapped_column(primary_key=True)
|
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))
|
content: Mapped[str] = mapped_column(String(1024))
|
||||||
# 最后使用的时刻
|
# 最后使用的时刻
|
||||||
last_usage: Mapped[datetime.datetime] = mapped_column(DateTime, default=datetime.datetime(1970, 1, 1))
|
last_usage: Mapped[datetime.datetime] = mapped_column(DateTime, default=datetime.datetime(1970, 1, 1))
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
"""empty message
|
"""empty message
|
||||||
|
|
||||||
Revision ID: fc2b8481bdde
|
Revision ID: be215495b122
|
||||||
Revises: f9baef347cc8
|
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
|
from sqlalchemy.dialects import postgresql
|
||||||
|
|
||||||
# revision identifiers, used by Alembic.
|
# revision identifiers, used by Alembic.
|
||||||
revision = "fc2b8481bdde"
|
revision = "be215495b122"
|
||||||
down_revision = "f9baef347cc8"
|
down_revision = "f9baef347cc8"
|
||||||
branch_labels = None
|
branch_labels = None
|
||||||
depends_on = None
|
depends_on = None
|
||||||
@ -23,7 +23,7 @@ def upgrade() -> None:
|
|||||||
op.create_table(
|
op.create_table(
|
||||||
"nonebot_bison_cookie",
|
"nonebot_bison_cookie",
|
||||||
sa.Column("id", sa.Integer(), nullable=False),
|
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("content", sa.String(length=1024), nullable=False),
|
||||||
sa.Column("last_usage", sa.DateTime(), nullable=False),
|
sa.Column("last_usage", sa.DateTime(), nullable=False),
|
||||||
sa.Column("status", sa.String(length=20), nullable=False),
|
sa.Column("status", sa.String(length=20), nullable=False),
|
Loading…
x
Reference in New Issue
Block a user