feat(models): add basic database structure

This commit is contained in:
2025-10-09 14:33:07 +02:00
parent 991c070918
commit 95996d22f8
7 changed files with 129 additions and 1 deletions

View File

@@ -8,4 +8,8 @@ fi
cd backend || { echo "Directory 'backend' does not exist"; exit 1; }
alembic revision --autogenerate -m "$1"
git add alembic/versions/*
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
echo -e "${YELLOW}Don't forget to check imports in the new migration file!${NC}"
cd - || exit