Update migration steps to reflect correct total count and improve clarity

This commit is contained in:
Leon Bösche
2026-01-29 10:56:53 +01:00
parent 88a69fdaaf
commit 2f96d35657

View File

@@ -31,35 +31,35 @@ run_migration() {
} }
# Run migrations in order # Run migrations in order
echo "Step 1/6: Initial schema..." echo "Step 1/10: Initial schema..."
run_migration "$SCRIPT_DIR/0001_initial.sql" run_migration "$SCRIPT_DIR/0001_initial.sql"
echo echo
echo "Step 2/6: Passkeys and authentication..." echo "Step 2/10: Passkeys and authentication..."
run_migration "$SCRIPT_DIR/0002_passkeys.sql" run_migration "$SCRIPT_DIR/0002_passkeys.sql"
echo echo
echo "Step 3/6: Files and storage..." echo "Step 3/10: Files and storage..."
run_migration "$SCRIPT_DIR/0003_files.sql" run_migration "$SCRIPT_DIR/0003_files.sql"
echo echo
echo "Step 4/6: Organization ownership and slug scope..." echo "Step 4/10: Organization ownership and slug scope..."
run_migration "$SCRIPT_DIR/0004_org_owner_slug.sql" run_migration "$SCRIPT_DIR/0004_org_owner_slug.sql"
echo echo
echo "Step 5/6: Organization invitations and join requests..." echo "Step 5/10: Organization invitations and join requests..."
run_migration "$SCRIPT_DIR/0005_org_invitations.sql" run_migration "$SCRIPT_DIR/0005_org_invitations.sql"
echo echo
echo "Step 6/7: Organization invite links..." echo "Step 6/10: Organization invite links..."
run_migration "$SCRIPT_DIR/0006_org_invite_link.sql" run_migration "$SCRIPT_DIR/0006_org_invite_link.sql"
echo echo
echo "Step 7/8: File share links..." echo "Step 7/10: File share links..."
run_migration "$SCRIPT_DIR/0007_file_share_links.sql" run_migration "$SCRIPT_DIR/0007_file_share_links.sql"
echo echo
echo "Step 8/9: File share links nullable org..." echo "Step 8/10: File share links nullable org..."
run_migration "$SCRIPT_DIR/0008_file_share_links_nullable_org.sql" run_migration "$SCRIPT_DIR/0008_file_share_links_nullable_org.sql"
echo echo