From 68270b6906e2886e2ac9b9a7f32e7a5d688cfc48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20B=C3=B6sche?= Date: Sun, 11 Jan 2026 05:42:00 +0100 Subject: [PATCH] idle --- go_cloud/migrations/run-migrations.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/go_cloud/migrations/run-migrations.sh b/go_cloud/migrations/run-migrations.sh index 01a97f1..68e3e33 100644 --- a/go_cloud/migrations/run-migrations.sh +++ b/go_cloud/migrations/run-migrations.sh @@ -31,16 +31,20 @@ run_migration() { } # Run migrations in order -echo "Step 1/3: Initial schema..." +echo "Step 1/4: Initial schema..." run_migration "$SCRIPT_DIR/0001_initial.sql" echo -echo "Step 2/3: Passkeys and authentication..." +echo "Step 2/4: Passkeys and authentication..." run_migration "$SCRIPT_DIR/0002_passkeys.sql" echo -echo "Step 3/3: Files and storage..." +echo "Step 3/4: Files and storage..." run_migration "$SCRIPT_DIR/0003_files.sql" +echo +echo "Step 4/4: Organization ownership and slug scope..." +run_migration "$SCRIPT_DIR/0004_org_owner_slug.sql" + echo echo "=== All migrations completed successfully! ==="