cURL
curl --request POST \ --url https://api.example.com/databases/all/migrate \ --header 'Authorization: Bearer <token>'
{ "message": "All databases migrated successfully to version 3.0.0" }
Migrate all database schemas to the given target version. If a target version is not provided, all databases will be migrated to the latest version.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The target version to migrate tables to
All databases migrated successfully
Was this page helpful?