- DBA::exists() should only be used for checking if records exists.
- if you want to check if a table exists, please ALWAYS use
  DBStructure::existsTable() instead
This commit is contained in:
Roland Häder 2022-06-20 08:18:53 +02:00
parent cc750d743b
commit 6743de63f5
No known key found for this signature in database
GPG key ID: C82EDE5DDFA0BA77
3 changed files with 2 additions and 6 deletions

View file

@ -45,7 +45,6 @@ class DBStructureTest extends DatabaseTest
*/
public function testExists() {
self::assertTrue(DBStructure::existsTable('config'));
self::assertFalse(DBStructure::existsTable('notatable'));
self::assertTrue(DBStructure::existsColumn('config', ['k']));