Skip to content

Commit 989c4b6

Browse files
committed
Added old MySQL versions to tests.
1 parent 6c45828 commit 989c4b6

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.github/workflows/test_mysql.yml

+13-10
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,20 @@ jobs:
1515
matrix:
1616
operating_system: ['ubuntu-22.04']
1717
mysql_versions:
18-
- 'mariadb-10.4'
19-
- 'mariadb-10.5'
20-
- 'mariadb-10.6'
21-
- 'mariadb-10.11'
22-
- 'mariadb-11.0'
23-
- 'mariadb-11.1'
24-
- 'mariadb-11.2'
25-
- 'mariadb-11.3'
18+
# - 'mariadb-10.4'
19+
# - 'mariadb-10.5'
20+
# - 'mariadb-10.6'
21+
# - 'mariadb-10.11'
22+
# - 'mariadb-11.0'
23+
# - 'mariadb-11.1'
24+
# - 'mariadb-11.2'
25+
# - 'mariadb-11.3'
26+
# - 'mariadb-11.4'
27+
- '5.6'
28+
- '5.7'
2629
- '8.0'
27-
- '8.2'
28-
- '8.3'
30+
# - '8.2'
31+
# - '8.3'
2932
php_versions:
3033
- '8.2'
3134
include:

_include/src/Model/Installer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public function createTables(): void
2727
$schema = array(
2828
'FIELDS' => array(
2929
'name' => array(
30-
'datatype' => 'VARCHAR(255)',
30+
'datatype' => 'VARCHAR(191)',
3131
'allow_null' => false,
3232
'default' => '\'\''
3333
),

0 commit comments

Comments
 (0)