From e0273a4c41a52187f6ce8e821c45ccee2f7fdc01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Tue, 2 Jun 2020 22:13:49 +0200 Subject: [PATCH] MAPG-101 change Modify::$autoIncrement default value --- src/Database/Query/Modify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Database/Query/Modify.php b/src/Database/Query/Modify.php index da74873..efa3a00 100755 --- a/src/Database/Query/Modify.php +++ b/src/Database/Query/Modify.php @@ -16,7 +16,7 @@ class Modify private array $original = []; - private bool $autoIncrement = false; + private bool $autoIncrement = true; public function __construct(IConnection $connection, string $table) {