From 18b335d9e16c781652425d2289c60429b6186e1e Mon Sep 17 00:00:00 2001 From: F-G Fernandez <26927750+frgfm@users.noreply.github.com> Date: Sat, 30 Mar 2024 02:54:14 +0100 Subject: [PATCH] docs(readme): update migration readme --- src/migrations/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/migrations/README b/src/migrations/README index 9ea191d..25e41c3 100755 --- a/src/migrations/README +++ b/src/migrations/README @@ -14,7 +14,7 @@ Alembic allows you to record migration operation using DB operations. Let's crea docker compose exec -T backend alembic revision --autogenerate ``` -Once generated, you should edit the revision file in src/alembic/versions that was created. See example [here](https://github.com/jonra1993/fastapi-alembic-sqlmodel-async/blob/main/fastapi-alembic-sqlmodel-async/alembic/versions/2022-09-25-19-46_60d49bf413b8.py). +Once generated, you should edit the revision file in src/migrations/versions that was created. See example [here](https://github.com/jonra1993/fastapi-alembic-sqlmodel-async/blob/main/fastapi-alembic-sqlmodel-async/alembic/versions/2022-09-25-19-46_60d49bf413b8.py). ## Apply revisions