drizzle-kit 1.0.0-beta.3-b32f005 → 1.0.0-beta.3-7648fde
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 +2 -2
- package/package.json +1 -1
package/bin.cjs
CHANGED
|
@@ -43280,7 +43280,7 @@ WITH`;
|
|
|
43280
43280
|
if (viewMetadata) options.push(`VIEW_METADATA`);
|
|
43281
43281
|
statement += ` ${options.join(", ")}`;
|
|
43282
43282
|
}
|
|
43283
|
-
statement += ` AS
|
|
43283
|
+
statement += ` AS ${definition}`;
|
|
43284
43284
|
statement += checkOption ? `
|
|
43285
43285
|
WITH CHECK OPTION` : "";
|
|
43286
43286
|
statement += ";";
|
|
@@ -43309,7 +43309,7 @@ WITH`;
|
|
|
43309
43309
|
if (viewMetadata) options.push(`VIEW_METADATA`);
|
|
43310
43310
|
statement += ` ${options.join(", ")}`;
|
|
43311
43311
|
}
|
|
43312
|
-
statement += ` AS
|
|
43312
|
+
statement += ` AS ${definition}`;
|
|
43313
43313
|
statement += checkOption ? `
|
|
43314
43314
|
WITH CHECK OPTION` : "";
|
|
43315
43315
|
statement += ";";
|