mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-20 03:57:30 +08:00
25 lines
410 B
Python
25 lines
410 B
Python
"""2.1.1
|
|
|
|
Revision ID: 279a949d81b6
|
|
Revises: ca5461f314f2
|
|
Create Date: 2025-02-14 19:02:24.989349
|
|
|
|
"""
|
|
|
|
from app.chain.torrents import TorrentsChain
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '279a949d81b6'
|
|
down_revision = 'ca5461f314f2'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# 清理一次缓存
|
|
TorrentsChain().clear_torrents()
|
|
|
|
|
|
def downgrade() -> None:
|
|
pass
|