* @package Mammut\DB\Dialect */ trait DefaultDropTable { public function getDropTableSQL($name) { $name = $this->quoteIdent($name); return "DROP TABLE {$name}"; } }