We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Schema of a database column Will be created from the DB and used to automatically detect columns and their types.
Checks if this column has a default value.
Definition: public function HasDefault()
public function HasDefault()
Returns: bool
bool
Checks if NULL is allowed for this column.
Definition: public function IsNullAllowed()
public function IsNullAllowed()
Checks if this column belongs to the primary key In fact just return $this->Key == "PRIMARY";
return $this->Key == "PRIMARY";
Definition: public function IsPrimary()
public function IsPrimary()
Returns: bool true or false