Odoo Migrate Database¶
Danger
The super administrator password of the database manager is required to perform this operation.
Migrates the db databases list by updating the base module using the migrate_database method of the db service.
Method
{
"jsonrpc": "2.0",
"method": "call",
"params": {
"service": "db",
"method": "migrate_database",
"args": [
"password",
[
"db"
]
]
}
}
Request¶
Migrates the prod and test database.
Request body
{
"jsonrpc": "2.0",
"method": "call",
"params": {
"service": "db",
"method": "migrate_database",
"args": [
"super_admin_passwd",
[
"prod",
"test"
]
]
}
}