Is it possible to get database schema files in json that can be imported and / or exported with the appwrite console? Id like to be able to commit such work into source control and then be able to deploy it all once instead of manually adding databases, collections, attributes, and indexes.
Not via the console, but you can use the CLI: https://appwrite.io/docs/command-line
unfortunately I couldn't remember the original login credentials so I decided to drop the whole instance and start over (didn't have that much server side so far). but on the bright side I have more of an understanding how the cli and deploying will work 🙂 I will go ahead and add [solved] to this question.
[SOLVED] Is there a way to import / export the database schema?
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...