diff --git a/Database/Traits/QueryTrait.php b/Database/Traits/QueryTrait.php index f589b64a..50f25e9c 100644 --- a/Database/Traits/QueryTrait.php +++ b/Database/Traits/QueryTrait.php @@ -767,7 +767,7 @@ trait QueryTrait return $this; } - $this->where[] = $column . ' BETWEEN' . $start . ' AND ' . $end; + $this->where[] = $column . ' BETWEEN ' . $start . ' AND ' . $end; return $this; }