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
- 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...
- Query.search limitation
Since `string` is deprecated I used `varchar`, and now I cant use `Query.contains` , so I setup fulltext index and started using `Query.search` the issue is `Qu...
- Searching by attribute "name" requires a...
I have a table "products" with a few columns I'm trying to search by, but I get this error: ```json { "message": "Searching by attribute \"name\" requires a...