mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 04:01:10 -04:00
Merge branch 'mysql-fix' into 'master'
fix groupby issue on mysql See merge request mohit.panjvani/crater-web!90
This commit is contained in:
@ -53,6 +53,15 @@ return [
|
|||||||
'prefix_indexes' => true,
|
'prefix_indexes' => true,
|
||||||
'strict' => true,
|
'strict' => true,
|
||||||
'engine' => null,
|
'engine' => null,
|
||||||
|
'modes' => [
|
||||||
|
//'ONLY_FULL_GROUP_BY', // Disable this to allow grouping by one column
|
||||||
|
'STRICT_TRANS_TABLES',
|
||||||
|
'NO_ZERO_IN_DATE',
|
||||||
|
'NO_ZERO_DATE',
|
||||||
|
'ERROR_FOR_DIVISION_BY_ZERO',
|
||||||
|
'NO_AUTO_CREATE_USER',
|
||||||
|
'NO_ENGINE_SUBSTITUTION'
|
||||||
|
],
|
||||||
],
|
],
|
||||||
|
|
||||||
'pgsql' => [
|
'pgsql' => [
|
||||||
|
|||||||
Reference in New Issue
Block a user