We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e8496c commit dde9f07Copy full SHA for dde9f07
migrations.md
@@ -458,6 +458,7 @@ The schema builder blueprint offers a variety of methods that correspond to the
458
[uuidMorphs](#column-method-uuidMorphs)
459
[ulid](#column-method-ulid)
460
[uuid](#column-method-uuid)
461
+[vector](#column-method-vector)
462
[year](#column-method-year)
463
464
</div>
@@ -918,6 +919,13 @@ The `uuid` method creates a `UUID` equivalent column:
918
919
920
$table->uuid('id');
921
922
+<a name="column-method-vector"></a>
923
+#### `vector()` {.collection-method}
924
+
925
+The `vector` method creates a `vector` equivalent column:
926
927
+ $table->vector('embedding', dimensions: 100);
928
929
<a name="column-method-year"></a>
930
#### `year()` {.collection-method}
931
0 commit comments