I need to change a data type from float to string but I don't have the option to make that change, any ideas?
Are you in production with people using different versions of your app?
yes, I am in production
Will people be using old versions of your app? Can you afford downtime?
If I can open a downtime
Does the app refer to my Flutter application?
Yes. With mobile apps, people may be on different versions because they haven't updated the app. As such, you need to make sure to continue to support them until they upgrade
The type of data I need to change is in appwrite in a collection
we don't allow that. if you do that, your old app will error because it expects a number but is getting a string
I understand, thanks for the information.
Recommended threads
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...
- Edit ID of an existing collection
Hi there. Is it possible to edit an ID of an existing collection? Right now it looks impossible from AppWrite cloud at least.