/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Database/Schema/IndexDefinition.php
19 строк
949 B
Sebastian Hädrich
[12.x] Fix typo in type definition (#58624)
05 фев 2026, 01:44
Не верифицирован
05 фев 2026, 01:44
e016f70
Код
Авторство
О чём код?
<?php namespace Illuminate\Database\Schema; use Illuminate\Support\Fluent; /** * @method $this algorithm(string $algorithm) Specify an algorithm for the index (MySQL/PostgreSQL) * @method $this deferrable(bool $value = true) Specify that the unique index is deferrable (PostgreSQL) * @method $this initiallyImmediate(bool $value = true) Specify the default time to check the unique index constraint (PostgreSQL) * @method $this language(string $language) Specify a language for the full text index (PostgreSQL) * @method $this lock(('none'|'shared'|'default'|'exclusive') $value) Specify the DDL lock mode for the index operation (MySQL) * @method $this nullsNotDistinct(bool $value = true) Specify that the null values should not be treated as distinct (PostgreSQL) * @method $this online(bool $value = true) Specify that index creation should not lock the table (PostgreSQL/SqlServer) */ class IndexDefinition extends Fluent { // }