* @since 2.0.6 */ class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder { /** * @inheritdoc */ public function __toString() { return $this->type . $this->buildLengthString() . $this->buildUnsignedString() . $this->buildDefaultString() . $this->buildNotNullString() . $this->buildCheckString(); } }