23 lines
468 B
Python
23 lines
468 B
Python
from tortoise import Tortoise, run_async
|
|
|
|
from config.db_config import *
|
|
from tools import utils
|
|
|
|
|
|
async def init_db(create_db: bool = False) -> None:
|
|
await Tortoise.init(
|
|
db_url=RELATION_DB_URL,
|
|
modules={'models': ['models']},
|
|
_create_db=create_db
|
|
)
|
|
|
|
|
|
async def init():
|
|
await init_db(create_db=True)
|
|
await Tortoise.generate_schemas()
|
|
utils.logger.info("Init DB Success!")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
run_async(init())
|