Just upgraded my Appwrite instance from 1.6.1 → 1.7.4 and ran into some issues during the migration process. What I did:
- Upgraded Appwrite to 1.7.4
- Imported my backup using:
sudo docker-compose exec -T mariadb sh -c 'exec mysql -u"$MYSQL_USER" -p"$MYSQL_PASSWORD"' < ./backups/appwrite-dump-20250820_131433.sql - Ran migration with docker compose exec appwrite migrate
The Error I'm Getting:
sudo docker compose exec appwrite migrate Starting Data Migration to version 1.7.4 [Error] Timestamp: 2025-08-21T12:24:44+00:00 [Error] Type: PDOException [Error] Message: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'appwrite._console_devKeys' doesn't exist [Error] File: @swoole/library/core/Database/PDOStatementProxy.php
Questions:
Is this a known compatibility issue between these versions? Should I be running additional setup commands after restoring the database backup? Any suggestions on how to fix this missing table issue?
Any help would be much appreciated! 🙏
Recommended threads
- Attribute not found in schema on REST AP...
I'm querying a appwrite collection via the REST API on appwrite cloud 1.9.5 (no SDK) via a cloudflare worker and keep getting: ``` {"message":"Invalid query: A...
- Can't really use the S3 storage device
hi, I've linked my local MinIO Instance (it's just for testing, not for prod.) to my appwrite instance, when i'm uploading a file it's getting uploaded to the S...
- Next.js SSR Site Times Out on First Visi...
Hey everyone, I'm running a Next.js SSR site on a self-hosted Appwrite server (v1.9.0), and I've noticed a strange behavior that I'm hoping someone can help me...