
Having standards migration script is helpful. For example something like same script to apply for multiple DB - each DB for one tenant

// migrations/001-add-phone-to-students.ts export async function up(databases: AppwriteDatabases) { await databases.updateCollection('students', { addFields: [{ name: 'phone', type: 'string', required: false }] }); }

Exmaple something like this nut should be auto with appwrite cli
Recommended threads
- Querying and filtering on relationship a...
Hello! A few short months ago, we decided to migrate from SupaBase over to Appwrite, because we were experiencing a lot of headache with the former when it fina...
- Synchronous function execution timed out...
Hello everyone! I know this is an old question that many of you have already asked, but I'm doing it again because I can't understand the real solution or impl...
- How to migrate my data from Appwrite clo...
Hello guys, due to the recent policy regarding price change, my client want to move to self host, please, how do i begin the data migration.
