The update to Joomla 4 did not finish correctly because the database table 'ttg6527_workflow_associations' is missing. Use the following SQL statement in phpMyAdmin or a similar utility to create the table, but other database tables may also be missing:
Code:
CREATE TABLE `ttg6527_workflow_associations` ( `item_id` int NOT NULL DEFAULT '0' COMMENT 'Extension table id value', `stage_id` int NOT NULL COMMENT 'Foreign Key to #__workflow_stages.id', `extension` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`item_id`,`extension`), KEY `idx_item_stage_extension` (`item_id`,`stage_id`,`extension`), KEY `idx_item_id` (`item_id`), KEY `idx_stage_id` (`stage_id`), KEY `idx_extension` (`extension`)) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
Statistics: Posted by toivo — Sun Jan 14, 2024 12:29 am