Exemple #1
0
 public function testDropColumn()
 {
     $this->_connection->dropColumn($this->_tableName, 'column1');
     $this->assertFalse($this->_connection->tableColumnExists($this->_tableName, 'column1'), 'Table column must not exist after it has been dropped.');
 }