Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## **v2.1.5 (19 of Sep 2025)** - *Release*

* #2355[fixed] db_prefix support — installation and dashboard now function as expected

## **v2.1.4 (16 of Sep 2025)** - *Release*

* #2355[fixed] Improved database setup compatibility—now supports longer table prefixes during installation.
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Admin/src/Helpers/Reporting/Lead.php
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ public function getOverTimeStats($startDate, $endDate, $valueColumn, $dateColumn
->select(
DB::raw("$groupColumn AS date"),
DB::raw('COUNT(DISTINCT id) AS count'),
DB::raw("SUM(".\DB::getTablePrefix()."$valueColumn) AS total")
DB::raw('SUM('.\DB::getTablePrefix()."$valueColumn) AS total")
)
->whereIn('lead_pipeline_stage_id', $this->stageIds)
->whereBetween($dateColumn, [$startDate, $endDate])
Expand Down
2 changes: 1 addition & 1 deletion packages/Webkul/Core/src/Core.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Core
*
* @var string
*/
const KRAYIN_VERSION = '2.1.4';
const KRAYIN_VERSION = '2.1.5';

/**
* Create a new instance.
Expand Down