@tio After reviewing the CI log: ci-apps-dev.yunohost.org/ci/jo…
I see that the database.sql SQL script is imported in the friendica database first before the following line that fails:
However the addon table should be created by the following statement in database.sql:
CREATE TABLE IF NOT EXISTS `addon` ( `id` int unsigned NOT NULL auto_increment COMMENT '', `name` varchar(50) NOT NULL DEFAULT '' COMMENT 'addon base (file)name', `version` varchar(50) NOT NULL DEFAULT '' COMMENT 'currently unused', `installed` boolean NOT NULL DEFAULT '0' COMMENT 'currently always 1', `hidden` boolean NOT NULL DEFAULT '0' COMMENT 'currently unused', `timestamp` int unsigned NOT NULL DEFAULT 0 COMMENT 'file timestamp to check for reloads', `plugin_admin` boolean NOT NULL DEFAULT '0' COMMENT '1 = has admin config, 0 = has no admin config', PRIMARY KEY(`id`), INDEX `installed_name` (`installed`,`name`), UNIQUE INDEX `name` (`name`) ) DEFAULT COLLATE utf8mb4_general_ci COMMENT='registered addons';
So I'm even more puzzled after seeing the context.