I have an existing database collection. The collection already has multiple documents. I tried to add a new attribute called "rating" with default value of 0. The attribute was added in all documents but its value was set to "null" rather than 0. Isn't it a bug ? How to set it to 0 ?
I noticed when i set a default boolean value in my collection i was also just getting null, even from the console it didn't reflect. Looks like a bug, let's see what the Pro's have to say
This is expected. Appwrite doesn't automatically set the value for old documents. You can use a server SDK to update old documents:
https://github.com/appwrite/appwrite/issues/2768#issuecomment-1506322491
Recommended threads
- OAuth login not working on deployed app ...
Hey there, I've been dealing with an issue where I cannot use OAuth on my deployed app - locally everything works fine. I am using react-router in Framework Mo...
- Bug on Updating User Limit
I’ve encountered a bug in the Appwrite Cloud UI when attempting to update the user limit to 0. My goal is to disable public registration while still allowing e...
- database documents relationships
after migrating from 1.7.4 to 1.8, database get document and list documents is getting results but with no relationship values, the relationship attribute will...