db\Command createIndex()

createIndex() public method

Creates a SQL command for creating a new index.

public $this createIndex ( $name, $table, $columns, $unique = false )
$name string

The name of the index. The name will be properly quoted by the method.

$table string

The table that the new index will be created for. The table name will be properly quoted by the method.

$columns string|array

The column(s) that should be included in the index. If there are multiple columns, please separate them by commas. The column names will be properly quoted by the method.

$unique boolean

Whether to add UNIQUE constraint on the created index.

return $this

The command object itself

doc_Yii
2016-10-30 16:57:23
Comments
Leave a Comment

Please login to continue.