Use a table that hasn't got a foreign key

This commit is contained in:
Michael 2020-05-15 18:58:54 +00:00
parent ec3290da3b
commit 6272b8d4e0
1 changed files with 3 additions and 3 deletions

View File

@ -75,10 +75,10 @@ class DBStructureTest extends DatabaseTest
* @small
*/
public function testChangePrimaryKey() {
$oldID = 'client_id';
$oldID = 'id';
$newID = 'pw';
$this->assertTrue(DBStructure::rename('clients', [ $newID ], DBStructure::RENAME_PRIMARY_KEY));
$this->assertTrue(DBStructure::rename('clients', [ $oldID ], DBStructure::RENAME_PRIMARY_KEY));
$this->assertTrue(DBStructure::rename('workerqueue', [ $newID ], DBStructure::RENAME_PRIMARY_KEY));
$this->assertTrue(DBStructure::rename('workerqueue', [ $oldID ], DBStructure::RENAME_PRIMARY_KEY));
}
}