From 56a0170c7a21211c5471f83f11ca5eaa691402a2 Mon Sep 17 00:00:00 2001 From: Jakub Kriz Date: Thu, 12 Sep 2024 23:37:05 +0200 Subject: [PATCH] move execute migrations script --- .../execute_migrations.py | 4 ++++ 1 file changed, 4 insertions(+) rename execute_migrations.py => database_migrations/execute_migrations.py (75%) diff --git a/execute_migrations.py b/database_migrations/execute_migrations.py similarity index 75% rename from execute_migrations.py rename to database_migrations/execute_migrations.py index 6d08f88..d458cfd 100644 --- a/execute_migrations.py +++ b/database_migrations/execute_migrations.py @@ -1,3 +1,7 @@ +"""Script to execute migrations. + +This is done lazily because db for this project is just one simple table. Use alembic if you do anything that's more complicated than this. +""" import asyncio import asyncpg