Skip to content

Instantly share code, notes, and snippets.

@phalcon
Created August 12, 2013 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phalcon/6214897 to your computer and use it in GitHub Desktop.
Save phalcon/6214897 to your computer and use it in GitHub Desktop.
<?php
class MyDialect extends \Phalcon\Db\Dialect\Mysql
{
/**
* Gets the column name in MySQL
*
* @param Phalcon\Db\ColumnInterface $column
* @return string
*/
public function getColumnDefinition($column)
{
if ($column->getType() <= 8) {
return parent::getColumnDefinition($column);
}
//...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment