From 367ccf0f888eeb63ec8178b46a66060b6d39c9f9 Mon Sep 17 00:00:00 2001 From: i701 Date: Thu, 3 Jul 2025 17:13:41 +0500 Subject: [PATCH] =?UTF-8?q?feat(justfile):=20Add=20migrate=20and=20make-mi?= =?UTF-8?q?grations=20commands=20for=20database=20management=20=E2=9C=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- justfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/justfile b/justfile index b7ca1d6..bc25798 100644 --- a/justfile +++ b/justfile @@ -4,3 +4,9 @@ default: dev: python manage.py runserver python manage.py procrastinate worker + +migrate: + python manage.py migrate + +make-migrations: + python manage.py makemigrations \ No newline at end of file