Problems with updating object field and overall feedback
When trying to update existing field of an object i get "cannot alter array type _client_paying_enum[]". Also first time it happend it crashed the whole system and i had to uninstall everything and deploy it once again. I am deploying it with kubernetes manifests and on Azure AKS. Did anyone else had this problem? Also to me it seems that user experience is still unfinished with a lot of small problems like when I am trying to signing in process is weird, not sure if I did it right or not, it doesnt let me go further with a page, then I go back and then suddenly it redirects me to creating a new workspace. When creating new objects and fileds refreshing is neccessary to update changes, when something crashes there arent a lot of logs to figure out what is happening..
1 Reply
Yes, related to https://github.com/twentyhq/twenty/pull/9067
GitHub
Fix array enum renaming by charlesBochet · Pull Request #9067 · twe...
When creating an enum type (let's say post_type_enum), postgres will automatically create a array enum type based on this enum and prefix it with an underscore (so _post_type_enum).
Our cod...