Grammars
3 weeks ago
Blueprint.php
3 weeks ago
Builder.php
3 weeks ago
ColumnDefinition.php
3 weeks ago
ForeignIdColumnDefinition.php
3 weeks ago
ForeignKeyDefinition.php
3 weeks ago
IndexDefinition.php
3 weeks ago
MySqlBuilder.php
3 weeks ago
MySqlSchemaState.php
3 weeks ago
PostgresBuilder.php
3 weeks ago
PostgresSchemaState.php
3 weeks ago
SQLiteBuilder.php
3 weeks ago
SchemaState.php
3 weeks ago
SqlServerBuilder.php
3 weeks ago
SqliteSchemaState.php
3 weeks ago
IndexDefinition.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Database\Schema; |
| 4 | |
| 5 | use IAWPSCOPED\Illuminate\Support\Fluent; |
| 6 | /** |
| 7 | * @method $this algorithm(string $algorithm) Specify an algorithm for the index (MySQL/PostgreSQL) |
| 8 | * @method $this language(string $language) Specify a language for the full text index (PostgreSQL) |
| 9 | * @method $this deferrable(bool $value = true) Specify that the unique index is deferrable (PostgreSQL) |
| 10 | * @method $this initiallyImmediate(bool $value = true) Specify the default time to check the unique index constraint (PostgreSQL) |
| 11 | * @internal |
| 12 | */ |
| 13 | class IndexDefinition extends Fluent |
| 14 | { |
| 15 | // |
| 16 | } |
| 17 |