kohana-flexible-migrations
kohana-flexible-migrations copied to clipboard
$result can be returns NULL
Please change on classes/Drivers/Mysql.php on line 213:
if ($result->count() !== 1)
to:
if (!is_object($result) || $result->count() !== 1)
Because $result
can be NULL