drizzle-kit 0.24.0-6386ea9 → 0.24.0-bddd952
Sign up to get free protection for your applications and to get access to all the features.
- package/api.js +1219 -656
- package/api.mjs +1219 -656
- package/bin.cjs +1616 -641
- package/package.json +1 -1
- package/utils.js +9 -0
- package/utils.mjs +8 -0
package/package.json
CHANGED
package/utils.js
CHANGED
@@ -568,6 +568,7 @@ __export(utils_exports, {
|
|
568
568
|
columnRenameKey: () => columnRenameKey,
|
569
569
|
copy: () => copy,
|
570
570
|
dryJournal: () => dryJournal,
|
571
|
+
findAddedAndRemoved: () => findAddedAndRemoved,
|
571
572
|
isPgArrayType: () => isPgArrayType,
|
572
573
|
kloudMeta: () => kloudMeta,
|
573
574
|
normaliseSQLiteUrl: () => normaliseSQLiteUrl,
|
@@ -5742,12 +5743,20 @@ var normaliseSQLiteUrl = (it, type) => {
|
|
5742
5743
|
function isPgArrayType(sqlType) {
|
5743
5744
|
return sqlType.match(/.*\[\d*\].*|.*\[\].*/g) !== null;
|
5744
5745
|
}
|
5746
|
+
function findAddedAndRemoved(columnNames1, columnNames2) {
|
5747
|
+
const set1 = new Set(columnNames1);
|
5748
|
+
const set2 = new Set(columnNames2);
|
5749
|
+
const addedColumns = columnNames2.filter((it) => !set1.has(it));
|
5750
|
+
const removedColumns = columnNames1.filter((it) => !set2.has(it));
|
5751
|
+
return { addedColumns, removedColumns };
|
5752
|
+
}
|
5745
5753
|
// Annotate the CommonJS export names for ESM import in node:
|
5746
5754
|
0 && (module.exports = {
|
5747
5755
|
assertV1OutFolder,
|
5748
5756
|
columnRenameKey,
|
5749
5757
|
copy,
|
5750
5758
|
dryJournal,
|
5759
|
+
findAddedAndRemoved,
|
5751
5760
|
isPgArrayType,
|
5752
5761
|
kloudMeta,
|
5753
5762
|
normaliseSQLiteUrl,
|
package/utils.mjs
CHANGED
@@ -5723,11 +5723,19 @@ var normaliseSQLiteUrl = (it, type) => {
|
|
5723
5723
|
function isPgArrayType(sqlType) {
|
5724
5724
|
return sqlType.match(/.*\[\d*\].*|.*\[\].*/g) !== null;
|
5725
5725
|
}
|
5726
|
+
function findAddedAndRemoved(columnNames1, columnNames2) {
|
5727
|
+
const set1 = new Set(columnNames1);
|
5728
|
+
const set2 = new Set(columnNames2);
|
5729
|
+
const addedColumns = columnNames2.filter((it) => !set1.has(it));
|
5730
|
+
const removedColumns = columnNames1.filter((it) => !set2.has(it));
|
5731
|
+
return { addedColumns, removedColumns };
|
5732
|
+
}
|
5726
5733
|
export {
|
5727
5734
|
assertV1OutFolder,
|
5728
5735
|
columnRenameKey,
|
5729
5736
|
copy,
|
5730
5737
|
dryJournal,
|
5738
|
+
findAddedAndRemoved,
|
5731
5739
|
isPgArrayType,
|
5732
5740
|
kloudMeta,
|
5733
5741
|
normaliseSQLiteUrl,
|