* @since 2.0.8 */ class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder { /** * @inheritdoc */ protected function buildUnsignedString() { return $this->isUnsigned ? ' UNSIGNED' : ''; } /** * @inheritdoc */ public function __toString() { switch ($this->getTypeCategory()) { case self::CATEGORY_PK: $format = '{type}{check}'; break; case self::CATEGORY_NUMERIC: $format = '{type}{length}{unsigned}{notnull}{unique}{check}{default}'; break; default: $format = '{type}{length}{notnull}{unique}{check}{default}'; } return $this->buildCompleteString($format); } /** * @inheritdoc * @param string $comment * @throws NotSupportedException */ public function comment($comment) { throw new NotSupportedException(__METHOD__ . ' is not supported by SQLite.'); } /** * @inheritdoc */ protected function buildCommentString() { return ''; } }