chore: Move SQLite migration script to migration/ folder

Co-authored-by: Liang Wu <wuliang@google.com>
PiperOrigin-RevId: 844902789
This commit is contained in:
Liang Wu
2025-12-15 13:38:13 -08:00
committed by Copybara-Service
parent 8335f35015
commit e8ab7dafa9
2 changed files with 1 additions and 1 deletions
@@ -107,7 +107,7 @@ class SqliteSessionService(BaseSessionService):
f"Database {db_path} seems to use an old schema."
" Please run the migration command to"
" migrate it to the new schema. Example: `python -m"
" google.adk.sessions.migrate_from_sqlalchemy_sqlite"
" google.adk.sessions.migration.migrate_from_sqlalchemy_sqlite"
f" --source_db_path {db_path} --dest_db_path"
f" {db_path}.new` then backup {db_path} and rename"
f" {db_path}.new to {db_path}."