stop supporting MySQL 5.6
using SQLite is a much better plan, if you don't have MySQL 5.7+
This commit is contained in:
parent
56751bc4c4
commit
068a89d451
1 changed files with 0 additions and 23 deletions
|
@ -1,23 +0,0 @@
|
||||||
<?php
|
|
||||||
/* Destructr | https://gitlab.com/byjoby/destructr | MIT License */
|
|
||||||
declare(strict_types=1);
|
|
||||||
namespace Destructr\LegacyDrivers;
|
|
||||||
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
use Destructr\Drivers\AbstractDriverTest;
|
|
||||||
|
|
||||||
class MySQL56DriverTest extends AbstractDriverTest
|
|
||||||
{
|
|
||||||
const DRIVER_CLASS = \Destructr\LegacyDrivers\MySQL56Driver::class;
|
|
||||||
const DRIVER_DSN = 'mysql:host=127.0.0.1;dbname=phpunit';
|
|
||||||
const DRIVER_USERNAME = 'travis';
|
|
||||||
const DRIVER_PASSWORD = null;
|
|
||||||
const DRIVER_OPTIONS = null;
|
|
||||||
|
|
||||||
public function createDriver()
|
|
||||||
{
|
|
||||||
$class = parent::createDriver();
|
|
||||||
$class->createLegacyUDF();
|
|
||||||
return $class;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in a new issue