yii\db\mssql\QueryBuilder::addCommentOnTable PHP Method

addCommentOnTable() public method

Since: 2.0.8
public addCommentOnTable ( $table, $comment )
    public function addCommentOnTable($table, $comment)
    {
        return "sp_updateextendedproperty @name = N'MS_Description', @value = {$this->db->quoteValue($comment)}, @level1type = N'Table',  @level1name = {$this->db->quoteTableName($table)}";
    }