|
|
@@ -22910,6 +22910,115 @@ public static function dropNestedSet()
|
|
|
return \Illuminate\Database\Schema\Blueprint::dropNestedSet();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param string $column
|
|
|
+ * @param mixed|null $dimensions
|
|
|
+ * @return \Illuminate\Database\Schema\ColumnDefinition
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function halfvec($column, $dimensions = null)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Schema\Blueprint::halfvec($column, $dimensions);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param string $column
|
|
|
+ * @param mixed|null $length
|
|
|
+ * @return \Illuminate\Database\Schema\ColumnDefinition
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function bit($column, $length = null)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Schema\Blueprint::bit($column, $length);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param string $column
|
|
|
+ * @param mixed|null $dimensions
|
|
|
+ * @return \Illuminate\Database\Schema\ColumnDefinition
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function sparsevec($column, $dimensions = null)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Schema\Blueprint::sparsevec($column, $dimensions);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+namespace Illuminate\Database\Schema\Grammars {
|
|
|
+ /**
|
|
|
+ */
|
|
|
+ class PostgresGrammar extends \Illuminate\Database\Schema\Grammars\Grammar {
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ */
|
|
|
+ class Grammar extends \Illuminate\Database\Grammar {
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+namespace Illuminate\Database {
|
|
|
+ /**
|
|
|
+ */
|
|
|
+ class Grammar {
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param \Illuminate\Database\Schema\ColumnDefinition $column
|
|
|
+ * @return string
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function typeVector($column)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Grammar::typeVector($column);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param \Illuminate\Database\Schema\ColumnDefinition $column
|
|
|
+ * @return string
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function typeHalfvec($column)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Grammar::typeHalfvec($column);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param \Illuminate\Database\Schema\ColumnDefinition $column
|
|
|
+ * @return string
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function typeBit($column)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Grammar::typeBit($column);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @see \Pgvector\Laravel\Schema::register()
|
|
|
+ * @param \Illuminate\Database\Schema\ColumnDefinition $column
|
|
|
+ * @return string
|
|
|
+ * @static
|
|
|
+ */
|
|
|
+ public static function typeSparsevec($column)
|
|
|
+ {
|
|
|
+ return \Illuminate\Database\Grammar::typeSparsevec($column);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+namespace Illuminate\Database\Query\Grammars {
|
|
|
+ /**
|
|
|
+ */
|
|
|
+ class PostgresGrammar extends \Illuminate\Database\Query\Grammars\Grammar {
|
|
|
+ }
|
|
|
+ /**
|
|
|
+ */
|
|
|
+ class Grammar extends \Illuminate\Database\Grammar {
|
|
|
}
|
|
|
}
|
|
|
|