This commit is contained in:
Christian Werner 2025-03-02 20:52:21 +01:00
parent 31c1f36744
commit 4d078906db
4 changed files with 0 additions and 21 deletions

View File

@ -1,13 +0,0 @@
services:
db:
image: postgres:16.4
container_name: gandalf_reborn_db
restart: always
shm_size: 128mb
environment:
POSTGRES_PASSWORD: root
POSTGRES_USER: root
POSTGRES_DB: gandalf_reborn
ports:
- "5432:5432"

View File

@ -1,3 +0,0 @@
@echo off
set /p migrationName="Migration Name: "
dotnet ef migrations add %migrationName% --startup-project "../Api" --project "../Data" --context ApplicationContext

View File

@ -1,3 +0,0 @@
@echo off
dotnet ef database drop --force --startup-project "../Api" --project "../Data" --context ApplicationContext
dotnet ef database update --startup-project "../Api" --project "../Data" --context ApplicationContext

View File

@ -1,2 +0,0 @@
@echo off
dotnet ef database update --startup-project "../Api" --project "../Data" --context ApplicationContext