@zenstackhq/cli 3.4.2 → 3.4.3

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/dist/index.cjs CHANGED
@@ -2263,7 +2263,7 @@ var sqlite = {
2263
2263
  const stmt = db.prepare(sql);
2264
2264
  return stmt.all();
2265
2265
  }, "all");
2266
- const tablesRaw = all("SELECT name, type, sql AS definition FROM sqlite_schema WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%' ORDER BY name");
2266
+ const tablesRaw = all("SELECT name, type, sql AS definition FROM sqlite_schema WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%' AND name <> '_prisma_migrations' ORDER BY name");
2267
2267
  const autoIncrementTables = /* @__PURE__ */ new Set();
2268
2268
  for (const t of tablesRaw) {
2269
2269
  if (t.type === "table" && t.definition) {
@@ -3396,6 +3396,10 @@ async function run6(projectPath) {
3396
3396
  name: "@zenstackhq/cli@latest",
3397
3397
  dev: true
3398
3398
  },
3399
+ {
3400
+ name: "@zenstackhq/schema@latest",
3401
+ dev: false
3402
+ },
3399
3403
  {
3400
3404
  name: "@zenstackhq/orm@latest",
3401
3405
  dev: false