I'm currently running a self-hosted Appwrite v1.7.4 instance that still uses the old Collections/Documents database model.
I noticed that starting from v1.8.x, Appwrite introduces the new Tables (TablesDB) structure, which replaces the old model. The documentation also mentions that the legacy API will eventually be deprecated.
Before upgrading, I’d like to clarify a few important points:
Structural migration: If I upgrade directly from v1.7.4 → v1.8.x, will everything migrate silently in the background? For example, will my existing data automatically continue to work as:
Collection → Table
Attribute → Column
Document → Row
Can I continue using both the legacy SDK and the new SDK to access the same data after the upgrade, or will I need to choose one?
Release status: I checked GitHub and saw that v1.8.x currently appears to be in RC (Release Candidate) status. Because of that, I’m hesitant to migrate now — I’m concerned that new RC versions or bug fixes might appear soon, forcing me to upgrade again later when the stable release comes out. Would you recommend waiting for a fully stable release before migrating?
Is it something like this ?
Recommended threads
- Does anyone have a docker compose file f...
The compose file example on appwrite docs is 1.8.1 and I would like to try 1.9.0
- Docker compose 1.9.0 support
Hi! Sorry if I've missed something, but I saw that version 1.9.0 was released for self hosting, yet the compose file linked in the official documentation (https...
- Running Appwrite in docker through nginx
Hi team, I'm trying to expose multiple local services (Appwrite, Ollama, PostHog) through a single Nginx reverse proxy port, tunneled via ngrok to a public dom...