Exemplo n.º 1
0
Arquivo: Id.php Projeto: pckg/migrator
 public function getSql()
 {
     return parent::getSql() . ($this->autoincrement ? ' AUTO_INCREMENT' : '');
 }
Exemplo n.º 2
0
 public function integer($name, $length = 11)
 {
     $integer = new Integer($this, $name);
     $this->fields[] = $integer;
     $integer->length($length);
     return $integer;
 }