drizzle-kit 1.0.0-beta.5-9372e8c → 1.0.0-beta.5-39b14d1
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/bin.cjs +6 -6
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -180712,7 +180712,7 @@ var preparePushConfig = async (options, from) => {
|
|
|
180712
180712
|
credentials: parsed2.data,
|
|
180713
180713
|
casing: config.casing,
|
|
180714
180714
|
filters,
|
|
180715
|
-
explain: false
|
|
180715
|
+
explain: options.explain ?? false
|
|
180716
180716
|
};
|
|
180717
180717
|
}
|
|
180718
180718
|
if (config.dialect === "singlestore") {
|
|
@@ -180728,7 +180728,7 @@ var preparePushConfig = async (options, from) => {
|
|
|
180728
180728
|
force: options.force ?? false,
|
|
180729
180729
|
credentials: parsed2.data,
|
|
180730
180730
|
filters,
|
|
180731
|
-
explain: false
|
|
180731
|
+
explain: options.explain ?? false
|
|
180732
180732
|
};
|
|
180733
180733
|
}
|
|
180734
180734
|
if (config.dialect === "sqlite") {
|
|
@@ -180745,7 +180745,7 @@ var preparePushConfig = async (options, from) => {
|
|
|
180745
180745
|
credentials: parsed2.data,
|
|
180746
180746
|
casing: config.casing,
|
|
180747
180747
|
filters,
|
|
180748
|
-
explain: false
|
|
180748
|
+
explain: options.explain ?? false
|
|
180749
180749
|
};
|
|
180750
180750
|
}
|
|
180751
180751
|
if (config.dialect === "turso") {
|
|
@@ -180762,7 +180762,7 @@ var preparePushConfig = async (options, from) => {
|
|
|
180762
180762
|
credentials: parsed2.data,
|
|
180763
180763
|
casing: config.casing,
|
|
180764
180764
|
filters,
|
|
180765
|
-
explain: false
|
|
180765
|
+
explain: options.explain ?? false
|
|
180766
180766
|
};
|
|
180767
180767
|
}
|
|
180768
180768
|
if (config.dialect === "gel") {
|
|
@@ -180782,7 +180782,7 @@ var preparePushConfig = async (options, from) => {
|
|
|
180782
180782
|
credentials: parsed2.data,
|
|
180783
180783
|
casing: config.casing,
|
|
180784
180784
|
filters,
|
|
180785
|
-
explain: false
|
|
180785
|
+
explain: options.explain ?? false
|
|
180786
180786
|
};
|
|
180787
180787
|
}
|
|
180788
180788
|
if (config.dialect === "cockroach") {
|
|
@@ -180799,7 +180799,7 @@ var preparePushConfig = async (options, from) => {
|
|
|
180799
180799
|
credentials: parsed2.data,
|
|
180800
180800
|
casing: config.casing,
|
|
180801
180801
|
filters,
|
|
180802
|
-
explain: false
|
|
180802
|
+
explain: options.explain ?? false
|
|
180803
180803
|
};
|
|
180804
180804
|
}
|
|
180805
180805
|
if (config.dialect === "duckdb") {
|