drizzle-kit 0.27.0-5ea5a84 → 0.27.1
Sign up to get free protection for your applications and to get access to all the features.
- package/api.js +1 -1
- package/api.mjs +1 -1
- package/bin.cjs +2 -2
- package/package.json +1 -1
package/api.js
CHANGED
@@ -17520,6 +17520,7 @@ var init_snapshotsDiffer = __esm({
|
|
17520
17520
|
jsonStatements.push(...jsonCreatedCheckConstraints);
|
17521
17521
|
jsonStatements.push(...jsonAlteredUniqueConstraints);
|
17522
17522
|
jsonStatements.push(...jsonAlterEnumsWithDroppedValues);
|
17523
|
+
jsonStatements.push(...createViews);
|
17523
17524
|
jsonStatements.push(...jsonRenamePoliciesStatements);
|
17524
17525
|
jsonStatements.push(...jsonDropPoliciesStatements);
|
17525
17526
|
jsonStatements.push(...jsonCreatePoliciesStatements);
|
@@ -17528,7 +17529,6 @@ var init_snapshotsDiffer = __esm({
|
|
17528
17529
|
jsonStatements.push(...jsonDropIndPoliciesStatements);
|
17529
17530
|
jsonStatements.push(...jsonCreateIndPoliciesStatements);
|
17530
17531
|
jsonStatements.push(...jsonAlterIndPoliciesStatements);
|
17531
|
-
jsonStatements.push(...createViews);
|
17532
17532
|
jsonStatements.push(...dropEnums);
|
17533
17533
|
jsonStatements.push(...dropSequences);
|
17534
17534
|
jsonStatements.push(...dropSchemas);
|
package/api.mjs
CHANGED
@@ -17525,6 +17525,7 @@ var init_snapshotsDiffer = __esm({
|
|
17525
17525
|
jsonStatements.push(...jsonCreatedCheckConstraints);
|
17526
17526
|
jsonStatements.push(...jsonAlteredUniqueConstraints);
|
17527
17527
|
jsonStatements.push(...jsonAlterEnumsWithDroppedValues);
|
17528
|
+
jsonStatements.push(...createViews);
|
17528
17529
|
jsonStatements.push(...jsonRenamePoliciesStatements);
|
17529
17530
|
jsonStatements.push(...jsonDropPoliciesStatements);
|
17530
17531
|
jsonStatements.push(...jsonCreatePoliciesStatements);
|
@@ -17533,7 +17534,6 @@ var init_snapshotsDiffer = __esm({
|
|
17533
17534
|
jsonStatements.push(...jsonDropIndPoliciesStatements);
|
17534
17535
|
jsonStatements.push(...jsonCreateIndPoliciesStatements);
|
17535
17536
|
jsonStatements.push(...jsonAlterIndPoliciesStatements);
|
17536
|
-
jsonStatements.push(...createViews);
|
17537
17537
|
jsonStatements.push(...dropEnums);
|
17538
17538
|
jsonStatements.push(...dropSequences);
|
17539
17539
|
jsonStatements.push(...dropSchemas);
|
package/bin.cjs
CHANGED
@@ -30185,6 +30185,7 @@ var init_snapshotsDiffer = __esm({
|
|
30185
30185
|
jsonStatements.push(...jsonCreatedCheckConstraints);
|
30186
30186
|
jsonStatements.push(...jsonAlteredUniqueConstraints);
|
30187
30187
|
jsonStatements.push(...jsonAlterEnumsWithDroppedValues);
|
30188
|
+
jsonStatements.push(...createViews);
|
30188
30189
|
jsonStatements.push(...jsonRenamePoliciesStatements);
|
30189
30190
|
jsonStatements.push(...jsonDropPoliciesStatements);
|
30190
30191
|
jsonStatements.push(...jsonCreatePoliciesStatements);
|
@@ -30193,7 +30194,6 @@ var init_snapshotsDiffer = __esm({
|
|
30193
30194
|
jsonStatements.push(...jsonDropIndPoliciesStatements);
|
30194
30195
|
jsonStatements.push(...jsonCreateIndPoliciesStatements);
|
30195
30196
|
jsonStatements.push(...jsonAlterIndPoliciesStatements);
|
30196
|
-
jsonStatements.push(...createViews);
|
30197
30197
|
jsonStatements.push(...dropEnums);
|
30198
30198
|
jsonStatements.push(...dropSequences);
|
30199
30199
|
jsonStatements.push(...dropSchemas);
|
@@ -88963,7 +88963,7 @@ init_utils2();
|
|
88963
88963
|
var version2 = async () => {
|
88964
88964
|
const { npmVersion } = await ormCoreVersions();
|
88965
88965
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
88966
|
-
const envVersion = "0.27.
|
88966
|
+
const envVersion = "0.27.1";
|
88967
88967
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
88968
88968
|
const versions = `drizzle-kit: ${kitVersion}
|
88969
88969
|
${ormVersion}`;
|