2018-12-20 18:06:28 -05: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 11:17:01 -04:00
|
|
|
|
2018-12-20 18:06:28 -05:00
|
|
|
namespace JKingWeb\Arsse\TestCase\Db\MySQLPDO;
|
|
|
|
|
2024-12-27 23:39:44 -05:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
|
|
|
|
|
|
#[Group("slow")]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\Db\MySQL\PDODriver::class)]
|
2018-12-20 18:06:28 -05:00
|
|
|
class TestUpdate extends \JKingWeb\Arsse\TestCase\Db\BaseUpdate {
|
2019-08-25 13:19:11 -04:00
|
|
|
use \JKingWeb\Arsse\Test\DatabaseDrivers\MySQLPDO;
|
2019-01-12 12:43:06 -05:00
|
|
|
|
2018-12-20 18:06:28 -05: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';";
|
|
|
|
}
|