Dify Version: v1.10.1
Deployment Method: docker compose
Currently, the relational database and vector database are switched to seekdb as follows:
cd dify
cd docker
cp .env.example .env
DB_TYPE=mysql
DB_USERNAME=root
DB_HOST=seekdb
DB_PORT=2881
DB_DATABASE=test
OCEANBASE_VECTOR_HOST=seekdb
OCEANBASE_VECTOR_USER=root
seekdbCOMPOSE_PROFILES=seekdb
After starting the service, the docker-api-1 log shows:
Preparing database migration...
Database migration skipped
It is evident that the automatic migration from the original database did not execute. How should this issue be resolved?