예제 #1
0
파일: Column.php 프로젝트: lerre/framework
 /**
  * @param   string  $sqlType
  * @return  int
  */
 protected function _extractPrecision($sqlType)
 {
     if (preg_match('/^money/', $sqlType)) {
         return self::$moneyPrecision;
     }
     return parent::_extractPrecision($sqlType);
 }