MetaModels\Helper\TableManipulation::isValidColumnName PHP Method

isValidColumnName() public static method

Checks whether the column with the given name is a MetaModel system column.
public static isValidColumnName ( string $strColName ) : boolean
$strColName string The name of the column.
return boolean true if the column is a system column, false otherwise.
    public static function isValidColumnName($strColName)
    {
        return self::isValidMySQLIdentifier($strColName) && !self::isReservedWord($strColName);
    }