Has anyone encountered this issue?
appwrite deploy collection stuck every time at creating a datetime attribute.
I went to console and every other attribute was created so I believe it has something to do with datetime.
I followed the example here. https://appwrite.io/docs/models/attributeDatetime.
// my config
{
"key": "onSaleDateTime",
"type": "2020-10-15T06:38:00.000+00:00",
"status": "available",
"required": true,
"array": false,
"format": "datetime",
"default": "2020-10-15T06:38:00.000+00:00"
}
// Error message I got
Attribute creation did not finish for too long
Hmm...that type seems odd...
Would you please try putting datetime for the type?
It worked, thanks!
Awesome! Would you be able to create an issue? It looks like the type in the docs you shared is incorrect
cc @VincentGe
Recommended threads
- listRows result parsing issue
I'm using Appwrite Dart SDK "24.2.0". When I perform a listRows call in dart, I have this reponse in JSON: in " Future<models.RowList> listRows()" { "total" :...
- Index for combination of columns
How am i suppposed to apply index so that combination of two columns alwasy remain unique in appwrite table though console
- Broken Flutter SDK >=24.1.0
Row.fromMap now does: ``` data: Map<String, dynamic>.from(map["data"] ?? {}) ``` But Appwrite Cloud TablesDB row responses return custom row columns flattene...