Drop tags and categories

This commit is contained in:
LoRiot 2022-10-15 17:57:52 +03:00
parent a7d6626b12
commit 092b81c53a

View file

@ -5,7 +5,7 @@ from asyncpg.connection import Connection
async def drop_tables(connection: Connection): async def drop_tables(connection: Connection):
await connection.execute("DROP TABLE users, projects CASCADE") await connection.execute("DROP TABLE users, tags, categories, projects CASCADE")
async def main(): async def main():