Web Developer
Hello, I recently purchased a new web server and when trying to migrate my data from the old server to the new (both self-hosted instances of appwrite on coolify) I get errors when trying to migrate document. I also tried importing the data using the cloud to see if it was an issue with the servers but it failed on the cloud as well. This is the error I'm currently seeing - ```
{
"$id": "689414fb168ee4eaa96e",
"$createdAt": "2025-08-07T02:52:43.093+00:00",
"$updatedAt": "2025-08-07T02:55:17.033+00:00",
"status": "failed",
"stage": "finished",
"source": "Appwrite",
"destination": "Appwrite",
"resources": [
"database",
"collection",
"attribute",
"index",
"document"
],
"resourceId": "",
"statusCounters": {
"database": {
"pending": 0,
"success": 2,
"error": 0,
"skip": 0,
"processing": 0,
"warning": 0
},
"collection": {
"pending": 0,
"success": 24,
"error": 0,
"skip": 0,
"processing": 0,
"warning": 0
},
"attribute": {
"pending": 0,
"success": 237,
"error": 0,
"skip": 0,
"processing": 0,
"warning": 0
},
"index": {
"pending": 0,
"success": 35,
"error": 0,
"skip": 0,
"processing": 0,
"warning": 0
},
"document": {
"pending": 0,
"success": 118645,
"error": 2,
"skip": 0,
"processing": 0,
"warning": 0
}
},
"resourceData": [],
"errors": [
{
"code": 0,
"message": "Invalid document structure: Missing required attribute "status""
},
{
"code": 500,
"message": "SQLSTATE[HY093]: Invalid parameter number: number of bound variables does not match number of tokens"
}
]
}```
How can I get my data properly migrated over without these errors? I'm currently unable to see some critical data in several of my collections.