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! ==="