managarten/games/worldream/run_migrations.sh
Till-JS 8e414c12ba feat(games): add worldream game to monorepo
- Integrate worldream (text-first world-building platform) into games/
- Configure as @worldream/web workspace package
- Remove standalone git repo, now part of monorepo

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-12-05 13:24:06 +01:00

13 lines
No EOL
419 B
Bash
Executable file

#!/bin/bash
echo "Führe Datenbank-Migrationen aus..."
# Migration 004: Prompt System
echo "Migration 004: Prompt System..."
npx supabase db push --db-url "$DATABASE_URL" < supabase/migrations/004_prompt_system.sql
# Migration 005: Add image_url
echo "Migration 005: Add image_url column..."
npx supabase db push --db-url "$DATABASE_URL" < supabase/migrations/005_add_image_url.sql
echo "Migrationen abgeschlossen!"