From ac25e154ad20453a6cbca966b0088059c8b8374c Mon Sep 17 00:00:00 2001 From: Leon Lowitzki <1987342+leonlowitzki@users.noreply.github.com> Date: Fri, 22 Mar 2024 15:21:32 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Fix=20file=20path=20in=20b?= =?UTF-8?q?ackend/README.md=20when=20not=20wanting=20to=20use=20migrations?= =?UTF-8?q?=20#1116?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/README.md b/backend/README.md index 2eae815..e6400be 100644 --- a/backend/README.md +++ b/backend/README.md @@ -183,7 +183,7 @@ $ alembic revision --autogenerate -m "Add column last_name to User model" $ alembic upgrade head ``` -If you don't want to use migrations at all, uncomment the lines in the file at `./backend/app/db/init_db.py` that end in: +If you don't want to use migrations at all, uncomment the lines in the file at `./backend/app/core/db.py` that end in: ```python SQLModel.metadata.create_all(engine)