From e9b5f33949c94f55d4d13a6c295bd3fb5ad88eb3 Mon Sep 17 00:00:00 2001 From: Dario Rekowski on RockPI Date: Thu, 13 May 2021 11:36:02 +0000 Subject: [PATCH] return value with runcate to work woth migration call --- community_server/src/Model/Table/AppTable.php | 1 + 1 file changed, 1 insertion(+) diff --git a/community_server/src/Model/Table/AppTable.php b/community_server/src/Model/Table/AppTable.php index 138a7f949..a0758c97a 100644 --- a/community_server/src/Model/Table/AppTable.php +++ b/community_server/src/Model/Table/AppTable.php @@ -22,6 +22,7 @@ class AppTable extends Table $this->getConnection()->query($truncateCommand); } $this->getConnection()->query('ALTER TABLE ' . $this->getSchema()->name() . ' AUTO_INCREMENT=1'); + return ['success' => true]; } public function saveManyWithErrors($entities) {