We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2ad447 commit 7717097Copy full SHA for 7717097
tests/system/Database/Live/SQLite/AlterTableTest.php
@@ -189,6 +189,10 @@ public function testDropColumnDropCompositeKey()
189
// check that composite index was dropped.
190
$this->assertFalse(isset($indexes['actions_category_name']));
191
192
+ // check that that other keys are present
193
+ $this->assertTrue(isset($indexes['actions_name']));
194
+ $this->assertTrue(isset($indexes['actions_created_at']));
195
+
196
$this->forge->dropTable('actions');
197
}
198
0 commit comments