Open lightningcal opened 5 months ago
I was able to get this to install on MySQL 5.5 but I had to change a column type to LONGTEXT since JSON type is only supported in 5.7 and up.
application\migrations\042_create_timeline.php
From:
'description' => array( 'type' => 'JSON', 'null' => false, 'comment' => 'JSON for MySQL, LONGTEXT for MariaDB' ),
to:
'description' => array( 'type' => 'LONGTEXT', 'null' => false, 'comment' => 'JSON for MySQL, LONGTEXT for MariaDB' ),
I was able to get this to install on MySQL 5.5 but I had to change a column type to LONGTEXT since JSON type is only supported in 5.7 and up.
application\migrations\042_create_timeline.php
From:
'description' => array( 'type' => 'JSON', 'null' => false, 'comment' => 'JSON for MySQL, LONGTEXT for MariaDB' ),
to:
'description' => array( 'type' => 'LONGTEXT', 'null' => false, 'comment' => 'JSON for MySQL, LONGTEXT for MariaDB' ),