Fixed imports in migrations.

This commit is contained in:
peacememories 2022-10-31 16:27:16 +01:00
parent 12221f186d
commit 9568d75fcc
5 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
from tortoise import BaseDBAsyncClient
from tortoise.backends.base.client import BaseDBAsyncClient
async def upgrade(db: BaseDBAsyncClient) -> str:

View file

@ -1,4 +1,4 @@
from tortoise import BaseDBAsyncClient
from tortoise.backends.base.client import BaseDBAsyncClient
async def upgrade(db: BaseDBAsyncClient) -> str:

View file

@ -1,4 +1,4 @@
from tortoise import BaseDBAsyncClient
from tortoise.backends.base.client import BaseDBAsyncClient
async def upgrade(db: BaseDBAsyncClient) -> str:

View file

@ -1,4 +1,4 @@
from tortoise import BaseDBAsyncClient
from tortoise.backends.base.client import BaseDBAsyncClient
async def upgrade(db: BaseDBAsyncClient) -> str:

View file

@ -1,4 +1,4 @@
from tortoise import BaseDBAsyncClient
from tortoise.backends.base.client import BaseDBAsyncClient
async def upgrade(db: BaseDBAsyncClient) -> str: