IndexDefinition.php 570 B

12345678910111213141516
  1. <?php
  2. namespace Illuminate\Database\Schema;
  3. use Illuminate\Support\Fluent;
  4. /**
  5. * @method $this algorithm(string $algorithm) Specify an algorithm for the index (MySQL/PostgreSQL)
  6. * @method $this language(string $language) Specify a language for the full text index (PostgreSQL)
  7. * @method $this deferrable(bool $value = true) Specify that the unique index is deferrable (PostgreSQL)
  8. * @method $this initiallyImmediate(bool $value = true) Specify the default time to check the unique index constraint (PostgreSQL)
  9. */
  10. class IndexDefinition extends Fluent
  11. {
  12. //
  13. }