feat: database migration

This commit is contained in:
Junyan Qin
2025-04-13 20:50:13 +08:00
parent 854effc43e
commit edc7f81486
6 changed files with 123 additions and 6 deletions
@@ -0,0 +1,13 @@
from .. import migration
# TODO fill this
# @migration.migration_class(1)
# class DBMigrationV3(migration.DBMigration):
# """数据库迁移"""
# async def upgrade(self):
# """升级"""
# pass
# async def downgrade(self):
# """降级"""