refactor: remove all asset/account functionality (models, schemas, routers, store, views, components, tests, docs)

This commit is contained in:
祀梦
2026-05-17 12:59:52 +08:00
parent 9c5ef36fe8
commit e3f73048a7
21 changed files with 11 additions and 3904 deletions

View File

@@ -59,7 +59,7 @@ def init_db():
"""初始化数据库表,自动补充新增的列"""
# 导入所有模型,确保 Base.metadata 包含全部表定义
from app.models import ( # noqa: F401
task, category, tag, user_settings, habit, anniversary, account,
task, category, tag, user_settings, habit, anniversary,
)
Base.metadata.create_all(bind=engine)