* @since 2.0.6 */ class ColumnSchemaBuilder extends AbstractColumnSchemaBuilder { /** * Specify the comment for the column. * @param string $comment the comment * @return $this * @throws NotSupportedException this is not supported by SQLite */ public function comment($comment) { throw new NotSupportedException(__METHOD__ . ' is not supported by SQLite.'); } /** * @inheritdoc */ protected function buildCommentString() { return ''; } }