diff --git a/services/mana-core-auth/docker-entrypoint.sh b/services/mana-core-auth/docker-entrypoint.sh index 844528896..59dfc9cdb 100755 --- a/services/mana-core-auth/docker-entrypoint.sh +++ b/services/mana-core-auth/docker-entrypoint.sh @@ -1,12 +1,9 @@ #!/bin/sh set -e -echo "🔄 Running database migrations..." - -# Run actual migrations (creates schemas + tables) -pnpm migration:run - -echo "✅ Migrations complete" +# Skip migrations in Docker - tables are managed via 'pnpm db:push' locally +# For fresh databases, run 'pnpm db:push' manually first +echo "📋 Skipping migrations (run 'pnpm db:push' locally if needed)" # Start the application echo "🚀 Starting Mana Core Auth..."