Exemple #1
0
 public function length($length)
 {
     if ($this->column->isString() || $this->isChange && $this->column->type === null) {
         $this->column->max = $length;
         return $this;
     } else {
         Sabel_Console::error("length() for _STRING column.");
         exit;
     }
 }