yii\db\Command::dropCommentFromColumn PHP 메소드

dropCommentFromColumn() 공개 메소드

Builds a SQL command for dropping comment from column
부터: 2.0.8
public dropCommentFromColumn ( string $table, string $column )
$table string the table whose column is to be commented. The table name will be properly quoted by the method.
$column string the name of the column to be commented. The column name will be properly quoted by the method.
    public function dropCommentFromColumn($table, $column)
    {
        $sql = $this->db->getQueryBuilder()->dropCommentFromColumn($table, $column);
        return $this->setSql($sql);
    }