コード例 #1
0
ファイル: Schema.php プロジェクト: icetomcat/database_adapter
 public function unsigned($name, $default = null, $index = "", $autoIncrement = false)
 {
     return $this->addColumn(Type::unsigned($name, $default, $index, $autoIncrement));
 }