Updates
This commit is contained in:
+6
-1
@@ -4,7 +4,7 @@ declare const DataTypes: readonly [{
|
||||
readonly value: "0-255";
|
||||
readonly argument: true;
|
||||
readonly description: "Varchar is simply letters and numbers within the range 0 - 255";
|
||||
readonly maxValue: 255;
|
||||
readonly maxValue: 2000;
|
||||
}, {
|
||||
readonly title: "TINYINT";
|
||||
readonly name: "TINYINT";
|
||||
@@ -91,5 +91,10 @@ declare const DataTypes: readonly [{
|
||||
readonly title: "TIMESTAMP";
|
||||
readonly name: "TIMESTAMP";
|
||||
readonly description: "Time Stamp";
|
||||
}, {
|
||||
readonly title: "VECTOR";
|
||||
readonly name: "VECTOR";
|
||||
readonly description: "Vector Field for vector-based applications";
|
||||
readonly maxValue: 2147483647;
|
||||
}];
|
||||
export default DataTypes;
|
||||
|
||||
+7
-1
@@ -7,7 +7,7 @@ const DataTypes = [
|
||||
value: "0-255",
|
||||
argument: true,
|
||||
description: "Varchar is simply letters and numbers within the range 0 - 255",
|
||||
maxValue: 255,
|
||||
maxValue: 2000,
|
||||
},
|
||||
{
|
||||
title: "TINYINT",
|
||||
@@ -111,5 +111,11 @@ const DataTypes = [
|
||||
name: "TIMESTAMP",
|
||||
description: "Time Stamp",
|
||||
},
|
||||
{
|
||||
title: "VECTOR",
|
||||
name: "VECTOR",
|
||||
description: "Vector Field for vector-based applications",
|
||||
maxValue: 2147483647,
|
||||
},
|
||||
];
|
||||
exports.default = DataTypes;
|
||||
|
||||
+7
-1
@@ -6,7 +6,7 @@ const DataTypes = [
|
||||
argument: true,
|
||||
description:
|
||||
"Varchar is simply letters and numbers within the range 0 - 255",
|
||||
maxValue: 255,
|
||||
maxValue: 2000,
|
||||
},
|
||||
{
|
||||
title: "TINYINT",
|
||||
@@ -110,6 +110,12 @@ const DataTypes = [
|
||||
name: "TIMESTAMP",
|
||||
description: "Time Stamp",
|
||||
},
|
||||
{
|
||||
title: "VECTOR",
|
||||
name: "VECTOR",
|
||||
description: "Vector Field for vector-based applications",
|
||||
maxValue: 2147483647,
|
||||
},
|
||||
] as const;
|
||||
|
||||
export default DataTypes;
|
||||
|
||||
Reference in New Issue
Block a user