Docs: Update version references to v0.26.3 in READMEs and docs (#16574)

This commit is contained in:
Liu An
2026-07-02 20:55:15 +08:00
committed by GitHub
parent 93f6d647d4
commit 32c5cb16e9
33 changed files with 83 additions and 83 deletions

View File

@@ -1429,10 +1429,10 @@ Examples:
python mysql_migration.py --list-stages
# Check whether migration is needed for a target version
python mysql_migration.py --check-database-version --database-version v0.26.2 --config /path/to/config.yaml
python mysql_migration.py --check-database-version --database-version v0.26.3 --config /path/to/config.yaml
# Mark database version separately
python mysql_migration.py --mark-database-version --database-version v0.26.2 --config /path/to/config.yaml
python mysql_migration.py --mark-database-version --database-version v0.26.3 --config /path/to/config.yaml
# Dry run (default - check only, no write) with config file
python mysql_migration.py --stages tenant_model_provider --config /path/to/config.yaml
@@ -1446,11 +1446,11 @@ Examples:
# Execute full migration (create tables and migrate data)
python mysql_migration.py --stages tenant_model_provider --config /path/to/config.yaml --execute
# Execute migration only when database version is lower than v0.26.2
python mysql_migration.py --stages tenant_model_provider --config /path/to/config.yaml --execute --database-version v0.26.2
# Execute migration only when database version is lower than v0.26.3
python mysql_migration.py --stages tenant_model_provider --config /path/to/config.yaml --execute --database-version v0.26.3
# Execute migration and mark the database version when all stages succeed
python mysql_migration.py --stages tenant_model_provider,tenant_model_instance,tenant_model,model_id_config --config /path/to/config.yaml --execute --database-version v0.26.2 --mark-database-version-on-success
python mysql_migration.py --stages tenant_model_provider,tenant_model_instance,tenant_model,model_id_config --config /path/to/config.yaml --execute --database-version v0.26.3 --mark-database-version-on-success
# Normalize legacy model IDs in stored configs
python mysql_migration.py --stages model_id_config --config /path/to/config.yaml --execute