* This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ namespace Test\DB; /** * Class MySqlMigration * * @group DB */ class MySqlMigrationTest extends \Test\TestCase { /** @var \Doctrine\DBAL\Connection */ private $connection; /** @var string */ private $tableName; protected function setUp() { parent::setUp(); $this->connection = \OC::$server->getDatabaseConnection(); if (!$this->connection->getDatabasePlatform() instanceof \Doctrine\DBAL\Platforms\MySqlPlatform) { $this->markTestSkipped("Test only relevant on MySql"); } $dbPrefix = \OC::$server->getConfig()->getSystemValue("dbtableprefix"); $this->tableName = $this->getUniqueID($dbPrefix . '_enum_bit_test'); $this->connection->exec("CREATE TABLE $this->tableName(b BIT, e ENUM('1','2','3','4'))"); } protected function tearDown() { $this->connection->getSchemaManager()->dropTable($this->tableName); parent::tearDown(); } public function testNonOCTables() { $manager = new \OC\DB\MDB2SchemaManager($this->connection); $manager->updateDbFromStructure(__DIR__ . '/testschema.xml'); $this->addToAssertionCount(1); } } ns/github-actions-384b59e5c3'>dependabot/github_actions/github-actions-384b59e5c3 The official jQuery user interface library: https://github.com/jquery/jquery-uiwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/demos/selectable/serialize.html
blob: 18e35dae2c3c28f52e8dc0866be97926053dcea0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61