MetaModels\Attribute\BaseSimple::createColumn PHP Метод

createColumn() публичный Метод

You have to override this function in field types, when you want to have multi column structure etc.
public createColumn ( ) : void
Результат void
    public function createColumn()
    {
        if ($this->getColName()) {
            TableManipulation::createColumn($this->getMetaModel()->getTableName(), $this->getColName(), $this->getSQLDataType());
        }
    }