GDS\Schema::addInteger PHP Méthode

addInteger() public méthode

Add an integer field to the schema
public addInteger ( $str_name, boolean $bol_index = TRUE ) : Schema
$str_name
$bol_index boolean
Résultat Schema
    public function addInteger($str_name, $bol_index = TRUE)
    {
        return $this->addProperty($str_name, self::PROPERTY_INTEGER, $bol_index);
    }