Hi everyone,
I'm just in the process of switching a new collection property and I'm having some difficulty converting it to a "float" from an "integer".
I've added the new attribute to my collection like:
{
"key": "height",
"type": "float",
"status": "available",
"error": "",
"required": false,
"array": false,
"default": null
}
However, when I go to deploy my collection on my local instance it's timing out and I get the error ""Error Attribute creation timed out.". It worked fine when I had it as an integer but when trying to use a "float" It's timing out for some reason and I can't figure out.
Would be great if someone could point in the right direction or consider a different approach to be able to store values like 1.5.
Thank's,
Alex M
are you self hosting or on cloud?
Our deployed app used the cloud version, but this is only against my local appwrite instance whilst developing the feature.
what version of appwrite are you running locally? What version of the Appwrite CLI do you have?
What's going on in the console after you deploy?
it looks like it's taking some time deleting attributes and indexes...
Hey steven 👋
Appwrite Cli version: 5.0.3 Appwrite docker version: 1.5.5
Yeah that's right, so when I go to deploy my collection in this case it's called "climb" it's timing out when trying to delete the indexes and attributes. This is only happening when using the float data type, it works perfectly fine when using an integer but we need it to be a float to support values like 1.5 for example.
Is there anything additional that's required for a field which is a "float" ?
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...