deactivated test

This commit is contained in:
Michael 2020-05-15 21:09:50 +00:00
parent 68d3dc1fcc
commit 29450334d0
1 changed files with 4 additions and 3 deletions

View File

@ -75,10 +75,11 @@ class DBStructureTest extends DatabaseTest
* @small * @small
*/ */
public function testChangePrimaryKey() { public function testChangePrimaryKey() {
$oldID = 'id'; $this->markTestSkipped('rename primary key with autoincrement and foreign key support necessary first');
$oldID = 'client_id';
$newID = 'pw'; $newID = 'pw';
$this->assertTrue(DBStructure::rename('poll', [ $newID ], DBStructure::RENAME_PRIMARY_KEY)); $this->assertTrue(DBStructure::rename('clients', [ $newID ], DBStructure::RENAME_PRIMARY_KEY));
$this->assertTrue(DBStructure::rename('poll', [ $oldID ], DBStructure::RENAME_PRIMARY_KEY)); $this->assertTrue(DBStructure::rename('clients', [ $oldID ], DBStructure::RENAME_PRIMARY_KEY));
} }
} }