yii\db\ColumnSchemaBuilder::buildLengthString PHP 메소드

buildLengthString() 보호된 메소드

Builds the length/precision part of the column.
protected buildLengthString ( ) : string
리턴 string
    protected function buildLengthString()
    {
        if ($this->length === null || $this->length === []) {
            return '';
        }
        if (is_array($this->length)) {
            $this->length = implode(',', $this->length);
        }
        return "({$this->length})";
    }