mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-08 21:03:00 +08:00
* 🎨 修改 nonebot_bison 目录位置 * auto fix by pre-commit hooks * 🚚 fix frontend build target * 🚚 use soft link * Revert "🚚 use soft link" This reverts commit de21f79d5ae1bd5515b04f42a4138cb25ddf3e62. * 🚚 modify dockerfile --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: felinae98 <731499577@qq.com>
34 lines
855 B
Python
34 lines
855 B
Python
"""add last scheduled time
|
|
|
|
Revision ID: a333d6224193
|
|
Revises: 4a46ba54a3f3
|
|
Create Date: 2022-03-29 21:01:38.213153
|
|
|
|
"""
|
|
import sqlalchemy as sa
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "a333d6224193"
|
|
down_revision = "4a46ba54a3f3"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table("target", schema=None) as batch_op:
|
|
batch_op.add_column(
|
|
sa.Column("last_schedule_time", sa.DateTime(timezone=True), nullable=True)
|
|
)
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table("target", schema=None) as batch_op:
|
|
batch_op.drop_column("last_schedule_time")
|
|
|
|
# ### end Alembic commands ###
|