# oplatform-fastapi **Repository Path**: legendqi/oplatform-fastapi ## Basic Information - **Project Name**: oplatform-fastapi - **Description**: fastapi测试项目 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-20 - **Last Updated**: 2020-12-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CDN用户模块 ## 简介 ## 技术栈 ```bash Python3.7 + FastAPI + MySQL + Redis + Tortoise-orm + aerich ``` ## 数据库版本管理 ```bash # 初始化配置, 创建一个migrates文件夹和aerich.ini配置文件 aerich init -t settings.TORTOISE_ORM # 数据库生成表, 并创建migrations/models迁移文件 aerich init-db # 新增迁移文件 *_update.json aerich migrate # 执行迁移文件更新数据库 aerich upgrade # 回到上一个版本 aerich downgrade # 查看历史迁移记录 aerich history # 查看当前版本的迁移记录 aerich heads ```