You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go index.php?option=com_workflow&view=workflows&extension=com_contact
Create and save new Workflow
Click Transitions and create new transitions
Type name of transition and try click Save or Save & Close
Expected result
Saved transition
Actual result
Save failed with the following error ... "options" .. "cms_workflow_transitions" .. NOT NULL DETAIL
System information (as much as possible)
Joomla 5.2.1
PHP 8.1
Postgresql
Additional comments
I fixed it just
ALTER TABLE #__workflow_transitions
ALTER COLUMN options SET DEFAULT '{}';
The text was updated successfully, but these errors were encountered:
P.S.: I know, your issue and your fix are for PostgreSQL. But we want to have consistent data structures on all kinds of databases so data can be ported, that's why we also don't use default values on TEXT columns in PostgreSQL anymore.
Steps to reproduce the issue
Go index.php?option=com_workflow&view=workflows&extension=com_contact
Create and save new Workflow
Click Transitions and create new transitions
Type name of transition and try click Save or Save & Close
Expected result
Saved transition
Actual result
Save failed with the following error ... "options" .. "cms_workflow_transitions" .. NOT NULL DETAIL
System information (as much as possible)
Joomla 5.2.1
PHP 8.1
Postgresql
Additional comments
I fixed it just
The text was updated successfully, but these errors were encountered: