PHP Класс yii\sphinx\IndexSchema

С версии: 2.0
Автор: Paul Klimov ([email protected])
Наследование: extends yii\base\Object
Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
$columns column metadata of this index. Each array element is a ColumnSchema object, indexed by column names.
$isRuntime whether this index is a runtime index.
$name name of this index.
$primaryKey primary key of this index.
$type type of the index.

Открытые методы

Метод Описание
getColumn ( string $name ) : ColumnSchema Gets the named column metadata.
getColumnNames ( ) : array Returns the names of all columns in this table.

Описание методов

getColumn() публичный Метод

This is a convenient method for retrieving a named column even if it does not exist.
public getColumn ( string $name ) : ColumnSchema
$name string column name
Результат ColumnSchema metadata of the named column. Null if the named column does not exist.

getColumnNames() публичный Метод

Returns the names of all columns in this table.
public getColumnNames ( ) : array
Результат array list of column names

Описание свойств

$columns публичное свойство

column metadata of this index. Each array element is a ColumnSchema object, indexed by column names.
public $columns

$isRuntime публичное свойство

whether this index is a runtime index.
public $isRuntime

$name публичное свойство

name of this index.
public $name

$primaryKey публичное свойство

primary key of this index.
public $primaryKey

$type публичное свойство

type of the index.
public $type