drizzle-kit 0.30.1 → 0.30.2-44616e9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.js +16 -1
- package/api.mjs +16 -1
- package/bin.cjs +300 -301
- package/package.json +1 -1
package/api.js
CHANGED
@@ -21975,7 +21975,7 @@ var version;
|
|
21975
21975
|
var init_version = __esm({
|
21976
21976
|
"../drizzle-orm/dist/version.js"() {
|
21977
21977
|
"use strict";
|
21978
|
-
version = "0.38.
|
21978
|
+
version = "0.38.3";
|
21979
21979
|
}
|
21980
21980
|
});
|
21981
21981
|
|
@@ -41845,6 +41845,18 @@ function text4(a, b = {}) {
|
|
41845
41845
|
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41846
41846
|
return new SingleStoreTextBuilder(name2, "text", config);
|
41847
41847
|
}
|
41848
|
+
function tinytext2(a, b = {}) {
|
41849
|
+
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41850
|
+
return new SingleStoreTextBuilder(name2, "tinytext", config);
|
41851
|
+
}
|
41852
|
+
function mediumtext2(a, b = {}) {
|
41853
|
+
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41854
|
+
return new SingleStoreTextBuilder(name2, "mediumtext", config);
|
41855
|
+
}
|
41856
|
+
function longtext2(a, b = {}) {
|
41857
|
+
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41858
|
+
return new SingleStoreTextBuilder(name2, "longtext", config);
|
41859
|
+
}
|
41848
41860
|
var _a373, _b277, SingleStoreTextBuilder, _a374, _b278, SingleStoreText;
|
41849
41861
|
var init_text4 = __esm({
|
41850
41862
|
"../drizzle-orm/dist/singlestore-core/columns/text.js"() {
|
@@ -42500,7 +42512,10 @@ function getSingleStoreColumnBuilders() {
|
|
42500
42512
|
real: real4,
|
42501
42513
|
serial: serial3,
|
42502
42514
|
smallint: smallint3,
|
42515
|
+
longtext: longtext2,
|
42516
|
+
mediumtext: mediumtext2,
|
42503
42517
|
text: text4,
|
42518
|
+
tinytext: tinytext2,
|
42504
42519
|
time: time3,
|
42505
42520
|
timestamp: timestamp3,
|
42506
42521
|
tinyint: tinyint2,
|
package/api.mjs
CHANGED
@@ -21980,7 +21980,7 @@ var version;
|
|
21980
21980
|
var init_version = __esm({
|
21981
21981
|
"../drizzle-orm/dist/version.js"() {
|
21982
21982
|
"use strict";
|
21983
|
-
version = "0.38.
|
21983
|
+
version = "0.38.3";
|
21984
21984
|
}
|
21985
21985
|
});
|
21986
21986
|
|
@@ -41850,6 +41850,18 @@ function text4(a, b = {}) {
|
|
41850
41850
|
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41851
41851
|
return new SingleStoreTextBuilder(name2, "text", config);
|
41852
41852
|
}
|
41853
|
+
function tinytext2(a, b = {}) {
|
41854
|
+
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41855
|
+
return new SingleStoreTextBuilder(name2, "tinytext", config);
|
41856
|
+
}
|
41857
|
+
function mediumtext2(a, b = {}) {
|
41858
|
+
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41859
|
+
return new SingleStoreTextBuilder(name2, "mediumtext", config);
|
41860
|
+
}
|
41861
|
+
function longtext2(a, b = {}) {
|
41862
|
+
const { name: name2, config } = getColumnNameAndConfig(a, b);
|
41863
|
+
return new SingleStoreTextBuilder(name2, "longtext", config);
|
41864
|
+
}
|
41853
41865
|
var _a373, _b277, SingleStoreTextBuilder, _a374, _b278, SingleStoreText;
|
41854
41866
|
var init_text4 = __esm({
|
41855
41867
|
"../drizzle-orm/dist/singlestore-core/columns/text.js"() {
|
@@ -42505,7 +42517,10 @@ function getSingleStoreColumnBuilders() {
|
|
42505
42517
|
real: real4,
|
42506
42518
|
serial: serial3,
|
42507
42519
|
smallint: smallint3,
|
42520
|
+
longtext: longtext2,
|
42521
|
+
mediumtext: mediumtext2,
|
42508
42522
|
text: text4,
|
42523
|
+
tinytext: tinytext2,
|
42509
42524
|
time: time3,
|
42510
42525
|
timestamp: timestamp3,
|
42511
42526
|
tinyint: tinyint2,
|