* @package Mammut\DB\Dialect */ trait DefaultDropColumn { public function getDropColumnSQL($table, $column) { $table = $this->quoteIdent($table); $column = $this->quoteIdent($column); return "ALTER TABLE {$table} DROP COLUMN {$column}"; } }