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
- I recently switched to TablesDb. When li...
olddb.list_documents( queries =[ Query.order_desc("timestamp"), Query.equal("isPosted",[False]) ] ) Above works fine and reruns documents But below don't return...
- Database error validating 'min' and 'max...
I keep seeing an error when I try to add a column to a database table within the AppWrite cloud UI. I also see this error when trying to create or update a reco...
- Fine grained permissions for webRTC hand...
Hi, I am building a WebRTC P2P app for a university project and have hit a security limitation regarding permissions for anonymous users. The Architecture: We ...