Methods |
public
|
algorithm(string $algorithm): $this
Specify an algorithm for the index (MySQL/PostgreSQL)
Specify an algorithm for the index (MySQL/PostgreSQL)
|
#
|
public
|
language(string $language): $this
Specify a language for the full text index (PostgreSQL)
Specify a language for the full text index (PostgreSQL)
|
#
|
public
|
deferrable(bool $value = true): $this
Specify that the unique index is deferrable (PostgreSQL)
Specify that the unique index is deferrable (PostgreSQL)
|
#
|
public
|
initiallyImmediate(bool $value = true): $this
Specify the default time to check the unique index constraint (PostgreSQL)
Specify the default time to check the unique index constraint (PostgreSQL)
|
#
|
public
|
nullsNotDistinct(bool $value = true): $this
Specify that the null values should not be treated as distinct (PostgreSQL)
Specify that the null values should not be treated as distinct (PostgreSQL)
|
#
|