mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 23:21:08 +02:00
- 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>
13 lines
No EOL
419 B
Bash
Executable file
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!" |