This commit is contained in:
sclubricants 2022-08-23 11:44:47 -07:00
parent b2ad447cf1
commit 7717097c96
No known key found for this signature in database
GPG Key ID: 6150377168802194

View File

@ -189,6 +189,10 @@ final class AlterTableTest extends CIUnitTestCase
// check that composite index was dropped.
$this->assertFalse(isset($indexes['actions_category_name']));
// check that that other keys are present
$this->assertTrue(isset($indexes['actions_name']));
$this->assertTrue(isset($indexes['actions_created_at']));
$this->forge->dropTable('actions');
}