dropCommentFromTable() 공개 메소드

Builds a SQL statement for dropping comment from table
부터: 2.0.8
public dropCommentFromTable ( string $table )
$table string the table whose column is to be commented. The table name will be properly quoted by the method.
예제 #1
0
 /**
  * @inheritdoc
  * Note: table will be auto pefixied if [[$autoWrapTableNames]] is true.
  * @since 0.3.0
  */
 public function dropCommentFromTable($table)
 {
     $table = $this->autoWrappedTableName($table);
     return parent::dropCommentFromTable($table);
 }