2019-01-14 04:17:19 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-04-14 15:17:01 +00:00
|
|
|
|
2019-01-14 04:17:19 +00:00
|
|
|
namespace JKingWeb\Arsse\TestCase\Db\MySQL;
|
|
|
|
|
2024-12-28 04:39:44 +00:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
|
|
|
|
|
|
#[Group("slow")]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\MySQL\Driver::class)]
|
2019-01-14 04:17:19 +00:00
|
|
|
class TestUpdate extends \JKingWeb\Arsse\TestCase\Db\BaseUpdate {
|
2019-08-25 17:19:11 +00:00
|
|
|
use \JKingWeb\Arsse\Test\DatabaseDrivers\MySQL;
|
2019-01-14 04:17:19 +00:00
|
|
|
|
|
|
|
protected static $minimal1 = "CREATE TABLE arsse_meta(`key` varchar(255) primary key, value text); INSERT INTO arsse_meta(`key`,value) values('schema_version','1');";
|
|
|
|
protected static $minimal2 = "UPDATE arsse_meta set value = '2' where `key` = 'schema_version';";
|
|
|
|
}
|