@voltro/database 0.52.0 → 0.54.0

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/sql.js CHANGED
@@ -1,4 +1,4 @@
1
- import { $ as e, Q as t, Rt as n, St as r, Xt as i, Yt as a, Z as o, _ as s, a as c, c as l, gt as u, i as d, l as f, m as p, n as m, nt as h, o as g, p as _, r as v, rt as y, zt as b } from "./frameworkLiveTables-DNu6F6P8.js";
1
+ import { $ as e, Bt as t, Q as n, Qt as r, St as i, Vt as a, Z as o, Zt as s, _ as c, a as l, c as u, gt as d, i as f, l as p, m, n as h, nt as g, o as _, p as v, r as y, rt as b } from "./frameworkLiveTables-ChVR-C5F.js";
2
2
  import { Effect as x, Schedule as S } from "effect";
3
3
  import { createHash as ee } from "node:crypto";
4
4
  import { createLogger as te } from "@voltro/logger";
@@ -94,54 +94,54 @@ var ae = (e, t, n, r = 400) => {
94
94
  }, be = (e) => {
95
95
  let t = me(e);
96
96
  return t === void 0 ? pe : ye(`voltro_migration_lock:${t}`) & 9223372036854775807n;
97
- }, T = (e) => {
97
+ }, xe = (e) => {
98
98
  let t = `voltro_migration_${pe.toString(36)}`, n = me(e);
99
99
  if (n === void 0) return t;
100
100
  let r = `${t}_${n}`;
101
101
  return /^[A-Za-z0-9_]+$/.test(n) && r.length <= 64 ? r : `${t}_h${(ye(`voltro_migration_lock:${n}`) & ve).toString(16)}`;
102
- }, xe = 250, Se = () => {
102
+ }, Se = 250, Ce = () => {
103
103
  let e = Number(process.env.VOLTRO_MIGRATION_LOCK_TIMEOUT_MS);
104
104
  return Number.isFinite(e) && e > 0 ? e : 3e4;
105
- }, Ce = (e, t) => x.gen(function* () {
106
- let n = Se(), r = Date.now();
105
+ }, we = (e, t) => x.gen(function* () {
106
+ let n = Ce(), r = Date.now();
107
107
  for (;;) {
108
108
  if ((yield* e`
109
109
  SELECT pg_try_advisory_lock(${t.toString()}::bigint) AS got`)[0]?.got) return;
110
- Date.now() - r >= n && (yield* x.die(/* @__PURE__ */ Error(`could not acquire the postgres migration advisory lock within ${Math.round(n / 1e3)}s. Another migration is in progress, or a prior boot crashed while holding it. (A crashed process's session-level advisory lock is released once its DB connection closes; if this persists, find + terminate the holder via pg_stat_activity, or raise VOLTRO_MIGRATION_LOCK_TIMEOUT_MS.)`))), yield* x.sleep(`${xe} millis`);
110
+ Date.now() - r >= n && (yield* x.die(/* @__PURE__ */ Error(`could not acquire the postgres migration advisory lock within ${Math.round(n / 1e3)}s. Another migration is in progress, or a prior boot crashed while holding it. (A crashed process's session-level advisory lock is released once its DB connection closes; if this persists, find + terminate the holder via pg_stat_activity, or raise VOLTRO_MIGRATION_LOCK_TIMEOUT_MS.)`))), yield* x.sleep(`${Se} millis`);
111
111
  }
112
- }), we = (e, t) => x.gen(function* () {
112
+ }), Te = (e, t) => x.gen(function* () {
113
113
  yield* e`SELECT pg_advisory_unlock(${t.toString()}::bigint)`;
114
- }), Te = 30, Ee = (e, t) => x.gen(function* () {
114
+ }), Ee = 30, De = (e, t) => x.gen(function* () {
115
115
  (yield* e`
116
- SELECT GET_LOCK(${t}, ${Te}) AS got`)[0]?.got !== 1 && (yield* x.die(/* @__PURE__ */ Error(`could not acquire the migration lock '${t}' within ${Te}s (another migration is in progress, or a prior one left it held).`)));
117
- }), De = (e, t) => x.gen(function* () {
116
+ SELECT GET_LOCK(${t}, ${Ee}) AS got`)[0]?.got !== 1 && (yield* x.die(/* @__PURE__ */ Error(`could not acquire the migration lock '${t}' within ${Ee}s (another migration is in progress, or a prior one left it held).`)));
117
+ }), Oe = (e, t) => x.gen(function* () {
118
118
  yield* e`SELECT RELEASE_LOCK(${t})`;
119
- }), Oe = 3e4, ke = (e, t) => x.gen(function* () {
119
+ }), ke = 3e4, Ae = (e, t) => x.gen(function* () {
120
120
  let n = yield* e`
121
121
  DECLARE @res int;
122
122
  EXEC @res = sp_getapplock @Resource = ${t}, @LockMode = 'Exclusive',
123
- @LockOwner = 'Session', @LockTimeout = ${Oe};
123
+ @LockOwner = 'Session', @LockTimeout = ${ke};
124
124
  SELECT @res AS res`;
125
125
  (n[0]?.res ?? -999) < 0 && (yield* x.die(/* @__PURE__ */ Error(`could not acquire the migration lock '${t}' (sp_getapplock returned ${n[0]?.res ?? "no row"}; another migration is in progress).`)));
126
- }), Ae = (e, t) => x.gen(function* () {
126
+ }), je = (e, t) => x.gen(function* () {
127
127
  yield* e`EXEC sp_releaseapplock @Resource = ${t}, @LockOwner = 'Session'`;
128
- }), je = x.void, E = (e, t) => {
128
+ }), Me = x.void, T = (e, t) => {
129
129
  let n = he(t);
130
130
  return e.onDialectOrElse({
131
- mysql: () => Ee(e, T(n)),
132
- mssql: () => ke(e, T(n)),
133
- sqlite: () => je,
134
- orElse: () => Ce(e, be(n))
131
+ mysql: () => De(e, xe(n)),
132
+ mssql: () => Ae(e, xe(n)),
133
+ sqlite: () => Me,
134
+ orElse: () => we(e, be(n))
135
135
  });
136
- }, Me = (e, t) => {
136
+ }, E = (e, t) => {
137
137
  let n = he(t);
138
138
  return e.onDialectOrElse({
139
- mysql: () => De(e, T(n)),
140
- mssql: () => Ae(e, T(n)),
141
- sqlite: () => je,
142
- orElse: () => we(e, be(n))
139
+ mysql: () => Oe(e, xe(n)),
140
+ mssql: () => je(e, xe(n)),
141
+ sqlite: () => Me,
142
+ orElse: () => Te(e, be(n))
143
143
  });
144
- }, Ne = (e, t, n) => x.acquireUseRelease(E(e, n), () => t, () => Me(e, n).pipe(x.orDie)), Pe = (e) => e.onDialectOrElse({
144
+ }, Ne = (e, t, n) => x.acquireUseRelease(T(e, n), () => t, () => E(e, n).pipe(x.orDie)), Pe = (e) => e.onDialectOrElse({
145
145
  pg: () => "postgres",
146
146
  mysql: () => "mysql",
147
147
  mssql: () => "mssql",
@@ -154,19 +154,19 @@ var ae = (e, t, n, r = 400) => {
154
154
  mariadb: "per-operation",
155
155
  sqlite: "per-operation",
156
156
  turso: "per-operation"
157
- }, Ie = (e) => Fe[e], D = "_voltro_migration_ops", Le = h(D, {
158
- id: n({ prefix: "mop" }),
159
- runId: a(),
160
- planFingerprint: a(),
161
- opIndex: b(),
162
- opKind: a(),
163
- opTarget: a(),
164
- status: a(),
165
- payload: a(),
166
- startedAt: i().nullable(),
167
- appliedAt: i().nullable(),
168
- durationMs: b().nullable(),
169
- createdAt: i().default("now")
157
+ }, Ie = (e) => Fe[e], D = "_voltro_migration_ops", Le = g(D, {
158
+ id: t({ prefix: "mop" }),
159
+ runId: s(),
160
+ planFingerprint: s(),
161
+ opIndex: a(),
162
+ opKind: s(),
163
+ opTarget: s(),
164
+ status: s(),
165
+ payload: s(),
166
+ startedAt: r().nullable(),
167
+ appliedAt: r().nullable(),
168
+ durationMs: a().nullable(),
169
+ createdAt: r().default("now")
170
170
  }), Re = (e) => {
171
171
  switch (e.kind) {
172
172
  case "create-table": return /* @__PURE__ */ new Set([
@@ -219,54 +219,54 @@ Object.keys(Fe);
219
219
  //#region src/migrations/reactiveTriggerName.ts
220
220
  var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "framework_changes" ? `${Je}${e}` : `${Je}${t}_${e}`, Xe = (e) => e === "framework_changes" ? "framework_notify_change" : `framework_notify_change_${e}`, Ze = "voltro:notify:v2", Qe = te({ scope: "voltro:migrate" }), k = (e) => {
221
221
  Qe.warn(e.replace(/^\[voltro:migrate\]\s*/, ""));
222
- }, A = (e, n) => {
222
+ }, A = (e, t) => {
223
223
  let r = e.type;
224
224
  if (e.spatial) {
225
- if (n === "postgres") return `${e.spatial.kind}(${e.spatial.geomKind},${e.spatial.srid})`;
226
- throw Error(`@voltro/plugin-postgis: ${e.spatial.kind}('${e.spatial.geomKind}', ${e.spatial.srid}) is postgres-only — the active dialect is '${n}'. PostGIS has no portable equivalent; use store: 'postgres' (or DB_DIALECT=postgres) for spatial columns, or model the value as plain text/json.`);
225
+ if (t === "postgres") return `${e.spatial.kind}(${e.spatial.geomKind},${e.spatial.srid})`;
226
+ throw Error(`@voltro/plugin-postgis: ${e.spatial.kind}('${e.spatial.geomKind}', ${e.spatial.srid}) is postgres-only — the active dialect is '${t}'. PostGIS has no portable equivalent; use store: 'postgres' (or DB_DIALECT=postgres) for spatial columns, or model the value as plain text/json.`);
227
227
  }
228
228
  if (r === "raw") {
229
229
  if (e.rawDdl === void 0) throw Error("raw() column is missing its DDL fragment — this is a framework bug.");
230
230
  return e.rawDdl;
231
231
  }
232
232
  if (r === "array" && e.arrayElement) {
233
- if (n === "postgres") return `${A({
233
+ if (t === "postgres") return `${A({
234
234
  ...e,
235
235
  type: e.arrayElement,
236
236
  arrayElement: void 0
237
- }, n)}[]`;
238
- if (n === "mysql" || n === "mariadb") return "JSON";
239
- if (n === "mssql") return "NVARCHAR(MAX)";
240
- if (t(n)) return "TEXT";
237
+ }, t)}[]`;
238
+ if (t === "mysql" || t === "mariadb") return "JSON";
239
+ if (t === "mssql") return "NVARCHAR(MAX)";
240
+ if (n(t)) return "TEXT";
241
241
  }
242
242
  if (r === "vector") {
243
243
  let r = e.vectorDim;
244
244
  if (r === void 0) throw Error("vector column is missing its dimension — this is a framework bug.");
245
245
  let i = e.vectorPrecision === "half";
246
- if (n === "postgres") return i ? `HALFVEC(${r})` : `VECTOR(${r})`;
247
- if (n === "mysql" || n === "mariadb") return `VECTOR(${r})`;
248
- if (n === "mssql") return "VARBINARY(MAX)";
249
- if (t(n)) return "BLOB";
246
+ if (t === "postgres") return i ? `HALFVEC(${r})` : `VECTOR(${r})`;
247
+ if (t === "mysql" || t === "mariadb") return `VECTOR(${r})`;
248
+ if (t === "mssql") return "VARBINARY(MAX)";
249
+ if (n(t)) return "BLOB";
250
250
  }
251
251
  if (r === "interval") {
252
- if (n === "postgres") return "INTERVAL";
253
- if (n === "mysql" || n === "mariadb" || n === "mssql") return "BIGINT";
254
- if (t(n)) return "INTEGER";
252
+ if (t === "postgres") return "INTERVAL";
253
+ if (t === "mysql" || t === "mariadb" || t === "mssql") return "BIGINT";
254
+ if (n(t)) return "INTEGER";
255
255
  }
256
256
  if (r === "decimal") {
257
257
  let r = e.precision, i = e.scale ?? 0;
258
258
  if (r === void 0) throw Error("decimal column is missing its precision — this is a framework bug.");
259
- return t(n) ? "NUMERIC" : n === "postgres" ? `NUMERIC(${r}, ${i})` : `DECIMAL(${r}, ${i})`;
259
+ return n(t) ? "NUMERIC" : t === "postgres" ? `NUMERIC(${r}, ${i})` : `DECIMAL(${r}, ${i})`;
260
260
  }
261
- if (r === "bigint") return t(n) ? "INTEGER" : "BIGINT";
261
+ if (r === "bigint") return n(t) ? "INTEGER" : "BIGINT";
262
262
  if (r === "enum") {
263
- if (n === "postgres") return e.enumName ?? "TEXT";
264
- if (n === "mysql" || n === "mariadb") return `ENUM(${(e.enumValues ?? []).map((e) => `'${e.replace(/'/g, "''")}'`).join(", ")})`;
265
- if (n === "mssql") return "NVARCHAR(255)";
266
- if (t(n)) return "TEXT";
263
+ if (t === "postgres") return e.enumName ?? "TEXT";
264
+ if (t === "mysql" || t === "mariadb") return `ENUM(${(e.enumValues ?? []).map((e) => `'${e.replace(/'/g, "''")}'`).join(", ")})`;
265
+ if (t === "mssql") return "NVARCHAR(255)";
266
+ if (n(t)) return "TEXT";
267
267
  }
268
- if (r === "text" && e.maxLength !== void 0 && e.generatedAs === void 0) return n === "mssql" ? `NVARCHAR(${e.maxLength})` : t(n) ? "TEXT" : `VARCHAR(${e.maxLength})`;
269
- if (t(n)) switch (r) {
268
+ if (r === "text" && e.maxLength !== void 0 && e.generatedAs === void 0) return t === "mssql" ? `NVARCHAR(${e.maxLength})` : n(t) ? "TEXT" : `VARCHAR(${e.maxLength})`;
269
+ if (n(t)) switch (r) {
270
270
  case "id": return "TEXT";
271
271
  case "text": return "TEXT";
272
272
  case "integer": return "INTEGER";
@@ -282,7 +282,7 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
282
282
  case "array": return "TEXT";
283
283
  case "interval": return "INTEGER";
284
284
  }
285
- if (n === "mysql" || n === "mariadb") switch (r) {
285
+ if (t === "mysql" || t === "mariadb") switch (r) {
286
286
  case "id": return "VARCHAR(64)";
287
287
  case "text": return e.hasDefault && e.defaultFactory === void 0 || e.oneOf && e.oneOf.length > 0 ? "VARCHAR(255)" : e.generatedAs ? "TEXT" : "LONGTEXT";
288
288
  case "integer": return "INT";
@@ -298,7 +298,7 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
298
298
  case "array": return "JSON";
299
299
  case "interval": return "BIGINT";
300
300
  }
301
- if (n === "mssql") switch (r) {
301
+ if (t === "mssql") switch (r) {
302
302
  case "id": return "NVARCHAR(64)";
303
303
  case "text": return e.hasDefault && e.defaultFactory === void 0 || e.oneOf && e.oneOf.length > 0 ? "NVARCHAR(450)" : "NVARCHAR(MAX)";
304
304
  case "integer": return "INT";
@@ -330,10 +330,10 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
330
330
  case "array": return "TEXT[]";
331
331
  case "interval": return "INTERVAL";
332
332
  }
333
- }, $e = (e, n) => {
333
+ }, $e = (e, t) => {
334
334
  if (!e.hasDefault || e.defaultFactory !== void 0) return null;
335
335
  let r = e.defaultValue;
336
- return r === "now" ? t(n) ? "DEFAULT CURRENT_TIMESTAMP" : n === "mssql" ? "DEFAULT SYSUTCDATETIME()" : n === "mysql" || n === "mariadb" ? "DEFAULT CURRENT_TIMESTAMP(6)" : "DEFAULT now()" : typeof r == "boolean" ? n === "postgres" ? `DEFAULT ${r}` : `DEFAULT ${+!!r}` : typeof r == "number" ? `DEFAULT ${r}` : typeof r == "string" ? `DEFAULT '${r.replace(/'/g, "''")}'` : Array.isArray(r) ? et(r, e, n) : typeof r == "object" && r ? j(r, n) : null;
336
+ return r === "now" ? n(t) ? "DEFAULT CURRENT_TIMESTAMP" : t === "mssql" ? "DEFAULT SYSUTCDATETIME()" : t === "mysql" || t === "mariadb" ? "DEFAULT CURRENT_TIMESTAMP(6)" : "DEFAULT now()" : typeof r == "boolean" ? t === "postgres" ? `DEFAULT ${r}` : `DEFAULT ${+!!r}` : typeof r == "number" ? `DEFAULT ${r}` : typeof r == "string" ? `DEFAULT '${r.replace(/'/g, "''")}'` : Array.isArray(r) ? et(r, e, t) : typeof r == "object" && r ? j(r, t) : null;
337
337
  }, et = (e, t, n) => {
338
338
  if (n !== "postgres" || t.type !== "array" || t.arrayElement === void 0) return j(e, n);
339
339
  let r = A({
@@ -381,9 +381,9 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
381
381
  if (t === "mssql") return `AS (${n})${r ? " PERSISTED" : ""}`;
382
382
  if (t === "turso") throw Error("@voltro/sql-turso: generated columns (.generatedAs(...)) are not supported — Turso's MVCC mode (journal_mode=experimental_mvcc) rejects them. Drop the generated column, or use the 'sqlite' / 'postgres' dialect for this table.");
383
383
  return `GENERATED ALWAYS AS (${n}) ${r ? "STORED" : "VIRTUAL"}`;
384
- }, ot = (n, r, i, a, s = !1, c = !1) => {
385
- if (r.type === "id" && r.idScheme?.kind === "numeric") return M(n, i);
386
- let l = i === "mssql" && r.type === "text" && !r.generatedAs && r.maxLength === void 0 && a?.has(n) ? "NVARCHAR(450)" : A(r, i), u = [e(n, i), l];
384
+ }, ot = (t, r, i, a, s = !1, c = !1) => {
385
+ if (r.type === "id" && r.idScheme?.kind === "numeric") return M(t, i);
386
+ let l = i === "mssql" && r.type === "text" && !r.generatedAs && r.maxLength === void 0 && a?.has(t) ? "NVARCHAR(450)" : A(r, i), u = [e(t, i), l];
387
387
  r.type === "id" && !c && u.push("PRIMARY KEY");
388
388
  let d = at(r, i);
389
389
  if (d) u.push(d);
@@ -401,17 +401,17 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
401
401
  a !== "NO ACTION" && u.push(`ON UPDATE ${a}`);
402
402
  }
403
403
  if (r.oneOf && r.oneOf.length > 0) {
404
- let t = r.oneOf.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ");
405
- u.push(`CHECK (${e(n, i)} IN (${t}))`);
404
+ let n = r.oneOf.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ");
405
+ u.push(`CHECK (${e(t, i)} IN (${n}))`);
406
406
  }
407
407
  if (r.checks && r.checks.length > 0) for (let e of r.checks) u.push(`CHECK (${e})`);
408
- if (r.type === "enum" && r.enumValues && r.enumValues.length > 0 && (i === "mssql" || t(i))) {
409
- let t = r.enumValues.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ");
410
- u.push(`CHECK (${e(n, i)} IN (${t}))`);
408
+ if (r.type === "enum" && r.enumValues && r.enumValues.length > 0 && (i === "mssql" || n(i))) {
409
+ let n = r.enumValues.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ");
410
+ u.push(`CHECK (${e(t, i)} IN (${n}))`);
411
411
  }
412
412
  if (r.type === "json" || r.type === "array") {
413
- let r = e(n, i);
414
- t(i) ? u.push(`CHECK (${r} IS NULL OR json_valid(${r}))`) : i === "mssql" && u.push(`CHECK (${r} IS NULL OR ISJSON(${r}) = 1)`);
413
+ let r = e(t, i);
414
+ n(i) ? u.push(`CHECK (${r} IS NULL OR json_valid(${r}))`) : i === "mssql" && u.push(`CHECK (${r} IS NULL OR ISJSON(${r}) = 1)`);
415
415
  }
416
416
  return u.join(" ");
417
417
  }, st = (t, n, r = null, i) => {
@@ -472,7 +472,7 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
472
472
  } : (k(`[voltro:migrate] brin index '${e}' on '${t}': ${n} has no BRIN access method — falling back to btree (larger on disk, but the range scan still works).`), a);
473
473
  if (r === "hnsw") {
474
474
  if (n === "postgres") {
475
- let e = i?.hnsw?.m ?? 16, t = i?.hnsw?.efConstruction ?? 64, n = i?.hnsw?.opclass ?? y(i?.hnsw?.distance);
475
+ let e = i?.hnsw?.m ?? 16, t = i?.hnsw?.efConstruction ?? 64, n = i?.hnsw?.opclass ?? b(i?.hnsw?.distance);
476
476
  return {
477
477
  using: " USING hnsw",
478
478
  withSuffix: ` WITH (m = ${e}, ef_construction = ${t})`,
@@ -492,7 +492,7 @@ var O = "framework_changes", Je = "framework_changes_", Ye = (e, t) => t === "fr
492
492
  if (typeof e == "string") return it(e, t.fields, n);
493
493
  if ("jsonPath" in e) {
494
494
  let { column: t, path: r, numeric: i } = e.jsonPath;
495
- return `(${_(t, r, n, { numeric: i })})`;
495
+ return `(${v(t, r, n, { numeric: i })})`;
496
496
  }
497
497
  return `(${e.expr})`;
498
498
  });
@@ -666,9 +666,9 @@ $$ LANGUAGE plpgsql;
666
666
  case "mariadb": return `ALTER TABLE ${i(t.table)} ${l(!0)};`;
667
667
  default: return `ALTER TABLE ${i(t.table)} ${l(!1)};`;
668
668
  }
669
- }, yt = (e, n) => {
669
+ }, yt = (e, t) => {
670
670
  let r = /* @__PURE__ */ new Map();
671
- if (t(n)) return r;
671
+ if (n(t)) return r;
672
672
  for (let t of e) {
673
673
  let e = r.get(t.table) ?? /* @__PURE__ */ new Set();
674
674
  e.add(t.column), r.set(t.table, e);
@@ -694,38 +694,38 @@ $$ LANGUAGE plpgsql;
694
694
  if (t !== "postgres") return "";
695
695
  let n = /* @__PURE__ */ new Set();
696
696
  for (let t of e) for (let e of Object.values(t.fields)) e.type === "enum" && e.enumName && n.add(e.enumName);
697
- let i = [];
698
- for (let e of n) for (let { from: t, to: n } of r(e)) {
699
- let r = e.replace(/'/g, "''"), a = t.replace(/'/g, "''"), o = n.replace(/'/g, "''");
700
- i.push(`DO \$\$
697
+ let r = [];
698
+ for (let e of n) for (let { from: t, to: n } of i(e)) {
699
+ let i = e.replace(/'/g, "''"), a = t.replace(/'/g, "''"), o = n.replace(/'/g, "''");
700
+ r.push(`DO \$\$
701
701
  DECLARE
702
702
  type_oid oid;
703
703
  BEGIN
704
- SELECT oid INTO type_oid FROM pg_type WHERE typname = '${r}';\n IF type_oid IS NOT NULL\n AND EXISTS (SELECT 1 FROM pg_enum WHERE enumtypid = type_oid AND enumlabel = '${a}')\n AND NOT EXISTS (SELECT 1 FROM pg_enum WHERE enumtypid = type_oid AND enumlabel = '${o}') THEN\n IF current_setting('server_version_num')::int >= 140000 THEN\n EXECUTE format('ALTER TYPE %I RENAME VALUE %L TO %L', '${r}', '${a}', '${o}');\n ELSE\n UPDATE pg_enum SET enumlabel = '${o}' WHERE enumtypid = type_oid AND enumlabel = '${a}';\n END IF;\n END IF;\nEND $$;`);
704
+ SELECT oid INTO type_oid FROM pg_type WHERE typname = '${i}';\n IF type_oid IS NOT NULL\n AND EXISTS (SELECT 1 FROM pg_enum WHERE enumtypid = type_oid AND enumlabel = '${a}')\n AND NOT EXISTS (SELECT 1 FROM pg_enum WHERE enumtypid = type_oid AND enumlabel = '${o}') THEN\n IF current_setting('server_version_num')::int >= 140000 THEN\n EXECUTE format('ALTER TYPE %I RENAME VALUE %L TO %L', '${i}', '${a}', '${o}');\n ELSE\n UPDATE pg_enum SET enumlabel = '${o}' WHERE enumtypid = type_oid AND enumlabel = '${a}';\n END IF;\n END IF;\nEND $$;`);
705
705
  }
706
- return i.join("\n\n");
706
+ return r.join("\n\n");
707
707
  }, St = (e) => {
708
708
  let t = [], n = [];
709
- for (let r of e) p(r) ? n.push(r) : t.push(r);
709
+ for (let r of e) m(r) ? n.push(r) : t.push(r);
710
710
  return {
711
711
  tables: t,
712
712
  views: n
713
713
  };
714
- }, Ct = (e, n, r = O) => {
715
- let { tables: i, views: a } = St(e), { sorted: o, cyclic: c } = _t(i.map((e) => de(e, n))), l = yt(c, n), u = [];
716
- n === "postgres" && ht(o) && u.push("CREATE EXTENSION IF NOT EXISTS vector;"), n === "postgres" && gt(o) && u.push("CREATE EXTENSION IF NOT EXISTS postgis;");
717
- let d = xt(o, n);
714
+ }, Ct = (e, t, r = O) => {
715
+ let { tables: i, views: a } = St(e), { sorted: o, cyclic: s } = _t(i.map((e) => de(e, t))), l = yt(s, t), u = [];
716
+ t === "postgres" && ht(o) && u.push("CREATE EXTENSION IF NOT EXISTS vector;"), t === "postgres" && gt(o) && u.push("CREATE EXTENSION IF NOT EXISTS postgis;");
717
+ let d = xt(o, t);
718
718
  d && u.push(d);
719
- let f = bt(o, n);
719
+ let f = bt(o, t);
720
720
  f && u.push(f);
721
- for (let e of o) u.push(st(e, n, null, l.get(e.tableName)));
722
- if (!t(n)) for (let e of c) u.push(vt(e, n));
721
+ for (let e of o) u.push(st(e, t, null, l.get(e.tableName)));
722
+ if (!n(t)) for (let e of s) u.push(vt(e, t));
723
723
  for (let e of o) {
724
- let t = lt(e, n);
725
- t && u.push(t);
724
+ let n = lt(e, t);
725
+ n && u.push(n);
726
726
  }
727
- u.push(...ut(o, n, r));
728
- for (let e of a) u.push(s(e, n));
727
+ u.push(...ut(o, t, r));
728
+ for (let e of a) u.push(c(e, t));
729
729
  return u.join("\n\n") + "\n";
730
730
  }, wt = (t, n, r) => {
731
731
  let i = e(t, n);
@@ -737,13 +737,13 @@ BEGIN
737
737
  case "turso":
738
738
  case "sqlite": return `ATTACH DATABASE '${(r ?? `${t}.db`).replace(/'/g, "''")}' AS ${i};`;
739
739
  }
740
- }, Tt = (n, r, i, a) => {
740
+ }, Tt = (t, r, i, a) => {
741
741
  let o = wt(i, r, a), s = e(i, r);
742
- if (r === "postgres") return `${o}\n\nSET search_path TO ${s};\n\n${Ct(n, r)}`;
743
- if (r === "mysql" || r === "mariadb") return `${o}\n\nUSE ${s};\n\n${Ct(n, r)}`;
744
- let { sorted: c, cyclic: l } = _t(n), u = yt(l, r), d = [o];
742
+ if (r === "postgres") return `${o}\n\nSET search_path TO ${s};\n\n${Ct(t, r)}`;
743
+ if (r === "mysql" || r === "mariadb") return `${o}\n\nUSE ${s};\n\n${Ct(t, r)}`;
744
+ let { sorted: c, cyclic: l } = _t(t), u = yt(l, r), d = [o];
745
745
  for (let e of c) d.push(st(e, r, i, u.get(e.tableName)));
746
- if (!t(r)) for (let e of l) d.push(vt(e, r, i));
746
+ if (!n(r)) for (let e of l) d.push(vt(e, r, i));
747
747
  for (let e of c) {
748
748
  let t = lt(e, r, i);
749
749
  t && d.push(t);
@@ -813,7 +813,7 @@ BEGIN
813
813
  let i = Tt(e, n, t), a = yield* C.SqlClient;
814
814
  yield* Ne(a, Pt(a, i, n, r.retryFilter), { schema: r.lockSchema }).pipe(x.orDie);
815
815
  }), Rt = async (e, t, n, r = "postgres", i = {}) => {
816
- await x.runPromise(Lt(e, t, r, i).pipe(x.provide(n))), await f({
816
+ await x.runPromise(Lt(e, t, r, i).pipe(x.provide(n))), await p({
817
817
  namespace: t,
818
818
  dialect: r
819
819
  });
@@ -843,7 +843,7 @@ BEGIN
843
843
  })).sort((e, t) => e.name.localeCompare(t.name)), P = (e) => {
844
844
  let t = { tables: Wt(e.tables) }, n = JSON.stringify(Bt(t));
845
845
  return ee("sha256").update(n).digest("hex");
846
- }, F = (e) => e.slice(0, 16), Gt = (e, t) => {
846
+ }, Gt = (e) => e.slice(0, 16), Kt = (e, t) => {
847
847
  let n = t.references ? {
848
848
  table: t.references().tableName,
849
849
  column: "id",
@@ -882,7 +882,7 @@ BEGIN
882
882
  ...t.enumValues === void 0 ? {} : { enumValues: t.enumValues },
883
883
  ...t.spatial === void 0 ? {} : { spatial: t.spatial }
884
884
  };
885
- }, Kt = (e) => {
885
+ }, qt = (e) => {
886
886
  let t = [], n = /* @__PURE__ */ new Set(), r = (e) => {
887
887
  n.has(e.name) || (n.add(e.name), t.push(e));
888
888
  }, i = e.appliedPrimaryKey ?? [];
@@ -922,7 +922,7 @@ BEGIN
922
922
  let i = n;
923
923
  if (i.dropped || !i.references || i.fkAutoIndex === !1 || s.has(t)) continue;
924
924
  let a = `${e.tableName}_${t}_idx`;
925
- u(e.tableName, a, !0, [t]), r({
925
+ d(e.tableName, a, !0, [t]), r({
926
926
  name: a,
927
927
  table: e.tableName,
928
928
  columns: [t],
@@ -930,11 +930,11 @@ BEGIN
930
930
  });
931
931
  }
932
932
  return t;
933
- }, qt = (e) => {
933
+ }, Jt = (e) => {
934
934
  let t = new Set((e.appliedUniques ?? []).filter((e) => e.fields.length === 1).map((e) => e.fields[0])), n = [];
935
935
  for (let [r, i] of Object.entries(e.fields)) {
936
936
  if (i.dropped) continue;
937
- let e = Gt(r, i);
937
+ let e = Kt(r, i);
938
938
  n.push(t.has(r) ? {
939
939
  ...e,
940
940
  unique: !0
@@ -944,21 +944,21 @@ BEGIN
944
944
  return {
945
945
  name: e.tableName,
946
946
  columns: n,
947
- indexes: Kt(e),
947
+ indexes: qt(e),
948
948
  ...r.length > 0 ? { primaryKey: [...r] } : {},
949
949
  ...i === void 0 ? {} : { renamedFrom: i }
950
950
  };
951
- }, Jt = (e) => {
951
+ }, Yt = (e) => {
952
952
  let t = /* @__PURE__ */ new Map();
953
953
  for (let n of e) for (let e of n.indexes) {
954
954
  let r = t.get(e.name);
955
955
  if (r !== void 0 && r !== n.name) throw Error(`duplicate index name '${e.name}' across tables '${r}' and '${n.name}'. Index names must be unique per SCHEMA, not just per table — the DB creates only one, so the other never applies and 'db plan' re-emits it forever. Give each an explicit, table-prefixed name (e.g. '${n.name}_${e.name}').`);
956
956
  t.set(e.name, n.name);
957
957
  }
958
- }, I = (e, t) => {
959
- let n = e.map((e) => qt(de(e, t)));
960
- return Jt(n), { tables: n };
961
- }, Yt = (e, t, n = O) => x.gen(function* () {
958
+ }, F = (e, t) => {
959
+ let n = e.map((e) => Jt(de(e, t)));
960
+ return Yt(n), { tables: n };
961
+ }, Xt = (e, t, n = O) => x.gen(function* () {
962
962
  let r = (yield* e`
963
963
  SELECT p.prosrc
964
964
  FROM pg_proc p
@@ -989,7 +989,7 @@ BEGIN
989
989
  stale: l.sort(),
990
990
  functionOutdated: i
991
991
  };
992
- }), Xt = (e) => {
992
+ }), Zt = (e) => {
993
993
  let t = [];
994
994
  if (e.missing.length > 0) {
995
995
  let n = e.missing.slice(0, 8).join(", "), r = e.missing.length > 8 ? `, … (+${e.missing.length - 8})` : "";
@@ -1000,19 +1000,19 @@ BEGIN
1000
1000
  t.push(`${e.stale.length} .nonReactive() table(s) still carry a change trigger — ${n}. They keep paying REPLICA IDENTITY FULL and a NOTIFY on every write for a subscription nobody receives. \`voltro db apply\` removes them.`);
1001
1001
  }
1002
1002
  return e.functionOutdated && t.push("The change-notify function in this database is OLDER than the framework installed here. Its triggers fire, so nothing looks wrong — but a row too large for a NOTIFY payload (postgres caps it at 8000 bytes) is emitted without its primary key, and a change that carries no key cannot be re-read: it reaches subscriptions as a re-query and reaches every TAP — search index, analytics mirror, cdc-out, row history — as nothing at all. Run `voltro db apply` to replace it."), t.length > 0 ? t.join("\n") : void 0;
1003
- }, Zt = {
1003
+ }, Qt = {
1004
1004
  postgres: !0,
1005
1005
  mysql: !0,
1006
1006
  mariadb: !0,
1007
1007
  mssql: !0,
1008
1008
  sqlite: !0
1009
- }, Qt = {
1009
+ }, $t = {
1010
1010
  postgres: !0,
1011
1011
  mysql: !1,
1012
1012
  mariadb: !1,
1013
1013
  mssql: !0,
1014
1014
  sqlite: !0
1015
- }, $t = (e) => {
1015
+ }, en = (e) => {
1016
1016
  switch (e) {
1017
1017
  case "add-column":
1018
1018
  case "drop-column":
@@ -1022,47 +1022,47 @@ BEGIN
1022
1022
  case "add-foreign-key":
1023
1023
  case "add-unique":
1024
1024
  case "add-unique-composite":
1025
- case "add-check": return Qt;
1026
- default: return Zt;
1025
+ case "add-check": return $t;
1026
+ default: return Qt;
1027
1027
  }
1028
- }, en = (e, t) => {
1028
+ }, tn = (e, t) => {
1029
1029
  let n = new Map(t.tables.map((e) => [e.name, e]));
1030
1030
  return new Map(e.map((e) => [e.tableName, {
1031
1031
  table: e,
1032
1032
  snapshot: n.get(e.tableName),
1033
1033
  columnDefs: e.fields
1034
1034
  }]));
1035
- }, L = (e) => {
1035
+ }, I = (e) => {
1036
1036
  if (typeof e != "object" || !e) return JSON.stringify(e);
1037
- if (Array.isArray(e)) return `[${e.map(L).join(",")}]`;
1037
+ if (Array.isArray(e)) return `[${e.map(I).join(",")}]`;
1038
1038
  let t = e;
1039
- return `{${Object.keys(t).sort().map((e) => `${JSON.stringify(e)}:${L(t[e])}`).join(",")}}`;
1040
- }, tn = (e) => {
1039
+ return `{${Object.keys(t).sort().map((e) => `${JSON.stringify(e)}:${I(t[e])}`).join(",")}}`;
1040
+ }, nn = (e) => {
1041
1041
  if (!e.hasDefault || e.defaultValue === void 0 || e.defaultValue === null) return null;
1042
1042
  let t = e.defaultValue;
1043
1043
  if (typeof t == "boolean") return t ? "__BOOL_TRUE__" : "__BOOL_FALSE__";
1044
1044
  if (typeof t == "number") return String(t);
1045
- if (typeof t != "string") return L(t);
1045
+ if (typeof t != "string") return I(t);
1046
1046
  let n = t.trim(), r = n.toLowerCase().replace(/\s+/g, "");
1047
1047
  if (r === "now" || r === "now()" || /^current_timestamp(\(\d*\))?$/.test(r) || r === "sysutcdatetime()" || r === "sysdatetime()" || r === "getutcdate()" || r === "getdate()") return "__NOW__";
1048
1048
  let i = n.replace(/::[a-zA-Z0-9_ "]+$/, "").trim(), a = /^'(.*)'$/.test(i) ? i.slice(1, -1).replace(/''/g, "'") : i, o = /^cast\(\s*(?:_\w+\s*)?\\?'(.*?)\\?'\s+as\s+json\s*\)$/i.exec(a);
1049
1049
  if (o) try {
1050
- return L(JSON.parse(o[1]));
1050
+ return I(JSON.parse(o[1]));
1051
1051
  } catch {}
1052
1052
  let s = /^convert\(\s*(?:_\w+\s*)?\\?'(.*?)\\?'\s+using\s+[\w]+\s*\)$/i.exec(a);
1053
1053
  if (s) try {
1054
- return L(JSON.parse(s[1]));
1054
+ return I(JSON.parse(s[1]));
1055
1055
  } catch {}
1056
1056
  if (a.startsWith("{") || a.startsWith("[")) try {
1057
- return L(JSON.parse(a));
1057
+ return I(JSON.parse(a));
1058
1058
  } catch {}
1059
1059
  return /^-?\d+(\.\d+)?$/.test(a) ? String(Number(a)) : a;
1060
- }, nn = (e, t) => {
1061
- let n = tn(e), r = tn(t);
1060
+ }, rn = (e, t) => {
1061
+ let n = nn(e), r = nn(t);
1062
1062
  if (n === r) return !0;
1063
1063
  let i = (e) => e === "1" || e === "true" ? "__BOOL_TRUE__" : e === "0" || e === "false" ? "__BOOL_FALSE__" : e;
1064
1064
  return i(n) === i(r);
1065
- }, rn = (e) => {
1065
+ }, an = (e) => {
1066
1066
  if (!e) return null;
1067
1067
  let t = (e) => e === "restrict" ? "noAction" : e;
1068
1068
  return {
@@ -1071,25 +1071,25 @@ BEGIN
1071
1071
  onDelete: t(e.onDelete),
1072
1072
  onUpdate: t(e.onUpdate)
1073
1073
  };
1074
- }, an = (e, t) => {
1074
+ }, on = (e, t) => {
1075
1075
  let n = e && e.length > 0 ? e : void 0, r = t && t.length > 0 ? t : void 0;
1076
1076
  if (!n && !r) return !0;
1077
1077
  if (!n || !r || n.length !== r.length) return !1;
1078
1078
  let i = [...n].sort(), a = [...r].sort();
1079
1079
  return i.every((e, t) => e === a[t]);
1080
- }, on = (e, t) => {
1080
+ }, sn = (e, t) => {
1081
1081
  try {
1082
1082
  let n = /\((\d+)\)/.exec(A(e, t));
1083
1083
  return n ? Number(n[1]) : void 0;
1084
1084
  } catch {
1085
1085
  return;
1086
1086
  }
1087
- }, sn = (e, n, r) => r === void 0 || t(r) ? !0 : e.type !== "text" || n.type !== "text" || on(e, r) === n.maxLength, cn = (e, t, n) => e.type === t.type && e.nullable === t.nullable && e.unique === t.unique && nn(e, t) && sn(e, t, n) && JSON.stringify(rn(e.references)) === JSON.stringify(rn(t.references)) && an(e.oneOf, t.oneOf), ln = (e, t) => t.oneOf && t.oneOf.length > 0 ? R({
1087
+ }, cn = (e, t, r) => r === void 0 || n(r) ? !0 : e.type !== "text" || t.type !== "text" || sn(e, r) === t.maxLength, ln = (e, t, n) => e.type === t.type && e.nullable === t.nullable && e.unique === t.unique && rn(e, t) && cn(e, t, n) && JSON.stringify(an(e.references)) === JSON.stringify(an(t.references)) && on(e.oneOf, t.oneOf), un = (e, t) => t.oneOf && t.oneOf.length > 0 ? L({
1088
1088
  kind: "add-check",
1089
1089
  table: e,
1090
1090
  column: t.name,
1091
1091
  values: t.oneOf
1092
- }, "safe", `enum-membership CHECK on ${e}.${t.name}`) : void 0, un = (e, t) => e.unique === t.unique && (e.expression || t.expression ? !0 : e.columns.length === t.columns.length && e.columns.every((e, n) => e === t.columns[n])), dn = (e, t, n) => {
1092
+ }, "safe", `enum-membership CHECK on ${e}.${t.name}`) : void 0, dn = (e, t) => e.unique === t.unique && (e.expression || t.expression ? !0 : e.columns.length === t.columns.length && e.columns.every((e, n) => e === t.columns[n])), fn = (e, t, n) => {
1093
1093
  let r = new Map(t.columns.map((e) => [e.name, e])), i = new Map(e.columns.map((e) => [e.name, e])), a = [], o = [], s = [];
1094
1094
  for (let t of e.columns) {
1095
1095
  let e = r.get(t.name);
@@ -1097,7 +1097,7 @@ BEGIN
1097
1097
  a.push(t);
1098
1098
  continue;
1099
1099
  }
1100
- cn(t, e, n) || s.push({
1100
+ ln(t, e, n) || s.push({
1101
1101
  declared: t,
1102
1102
  live: e
1103
1103
  });
@@ -1108,47 +1108,47 @@ BEGIN
1108
1108
  removed: o,
1109
1109
  changed: s
1110
1110
  };
1111
- }, fn = (e, t) => {
1111
+ }, pn = (e, t) => {
1112
1112
  let n = new Map(t.indexes.map((e) => [e.name, e])), r = new Map(e.indexes.map((e) => [e.name, e])), i = [], a = [];
1113
1113
  for (let t of e.indexes) {
1114
1114
  let e = n.get(t.name);
1115
- (!e || !un(t, e)) && i.push(t);
1115
+ (!e || !dn(t, e)) && i.push(t);
1116
1116
  }
1117
1117
  for (let e of t.indexes) r.has(e.name) || a.push(e);
1118
1118
  return {
1119
1119
  added: i,
1120
1120
  removed: a
1121
1121
  };
1122
- }, R = (e, t, n, r) => ({
1122
+ }, L = (e, t, n, r) => ({
1123
1123
  op: e,
1124
1124
  classification: t,
1125
- atomicByDialect: $t(e.kind),
1125
+ atomicByDialect: en(e.kind),
1126
1126
  ...n ? { reason: n } : {},
1127
1127
  ...r ? { blocked: r } : {}
1128
- }), pn = (e, t, n) => {
1128
+ }), mn = (e, t, n) => {
1129
1129
  let r = {
1130
1130
  kind: "add-column",
1131
1131
  table: e,
1132
1132
  column: t
1133
1133
  };
1134
- return t.nullable ? R(r, "safe", "nullable column add — no backfill needed") : t.hasDefault && t.defaultValue !== void 0 ? R(r, "needs-default", "NOT NULL with literal default — DDL DEFAULT will populate existing rows") : n?.backfill ? R(r, "needs-backfill", `backfill declared (kind=${n.backfill.kind}) — applier will run 3-step add/update/set-not-null`) : R(r, "needs-backfill", "NOT NULL column on a table whose row count is unknown", { fix: `declare \`${t.name}: <type>().backfill(sql\`...\`)\` OR \`.default(value)\` so existing rows survive the migration` });
1135
- }, mn = (e, t, n) => {
1134
+ return t.nullable ? L(r, "safe", "nullable column add — no backfill needed") : t.hasDefault && t.defaultValue !== void 0 ? L(r, "needs-default", "NOT NULL with literal default — DDL DEFAULT will populate existing rows") : n?.backfill ? L(r, "needs-backfill", `backfill declared (kind=${n.backfill.kind}) — applier will run 3-step add/update/set-not-null`) : L(r, "needs-backfill", "NOT NULL column on a table whose row count is unknown", { fix: `declare \`${t.name}: <type>().backfill(sql\`...\`)\` OR \`.default(value)\` so existing rows survive the migration` });
1135
+ }, hn = (e, t, n) => {
1136
1136
  let r = {
1137
1137
  kind: "drop-column",
1138
1138
  table: e,
1139
1139
  column: t.name
1140
1140
  };
1141
- return n?.dropped ? R(r, "lossy", `column dropped via \`${t.name}: dropped()\` marker — intentional`) : R(r, "lossy", "column missing from declared schema", { fix: `if intentional, add \`${t.name}: dropped()\` to the schema. If a typo, restore the field` });
1142
- }, hn = (e, t, n, r, i) => R({
1141
+ return n?.dropped ? L(r, "lossy", `column dropped via \`${t.name}: dropped()\` marker — intentional`) : L(r, "lossy", "column missing from declared schema", { fix: `if intentional, add \`${t.name}: dropped()\` to the schema. If a typo, restore the field` });
1142
+ }, gn = (e, t, n, r, i) => L({
1143
1143
  kind: "create-table",
1144
1144
  table: e,
1145
1145
  columns: t,
1146
1146
  indexes: n,
1147
1147
  ...r && r.length > 0 ? { primaryKey: r } : {}
1148
- }, "safe", i ?? "new table — no data to preserve"), gn = (e) => R({
1148
+ }, "safe", i ?? "new table — no data to preserve"), _n = (e) => L({
1149
1149
  kind: "drop-table",
1150
1150
  table: e
1151
- }, "lossy", "table missing from declared schema", { fix: "if intentional, set VOLTRO_DESTRUCTIVE_OK=1 OR add a file-based migration. If a typo, restore the table declaration" }), _n = 5e4, vn = (e, t, n, r) => {
1151
+ }, "lossy", "table missing from declared schema", { fix: "if intentional, set VOLTRO_DESTRUCTIVE_OK=1 OR add a file-based migration. If a typo, restore the table declaration" }), vn = 5e4, yn = (e, t, n, r) => {
1152
1152
  let i = (n ?? 0) >= r, a;
1153
1153
  return a = t.unique ? t.columns.length === 1 ? {
1154
1154
  kind: "add-unique",
@@ -1163,16 +1163,16 @@ BEGIN
1163
1163
  kind: "add-index",
1164
1164
  table: e,
1165
1165
  index: t
1166
- }, i ? R(a, "online-required", `online build on ${n} rows — CONCURRENTLY / INPLACE / WITH(ONLINE=ON) depending on dialect`) : R(a, "safe", t.unique ? t.columns.length === 1 ? "add unique constraint" : "add composite UNIQUE constraint" : "add B-tree index");
1167
- }, yn = (e, t) => t.unique && t.columns.length > 1 ? R({
1166
+ }, i ? L(a, "online-required", `online build on ${n} rows — CONCURRENTLY / INPLACE / WITH(ONLINE=ON) depending on dialect`) : L(a, "safe", t.unique ? t.columns.length === 1 ? "add unique constraint" : "add composite UNIQUE constraint" : "add B-tree index");
1167
+ }, bn = (e, t) => t.unique && t.columns.length > 1 ? L({
1168
1168
  kind: "drop-unique-composite",
1169
1169
  table: e,
1170
1170
  name: t.name
1171
- }, "safe", "drop composite UNIQUE constraint (no data loss — constraint is derived metadata)") : R({
1171
+ }, "safe", "drop composite UNIQUE constraint (no data loss — constraint is derived metadata)") : L({
1172
1172
  kind: "drop-index",
1173
1173
  table: e,
1174
1174
  index: t.name
1175
- }, "safe", "drop index (no data loss — index is derived data)"), bn = (e, t) => {
1175
+ }, "safe", "drop index (no data loss — index is derived data)"), xn = (e, t) => {
1176
1176
  if (e === "reference") return "text";
1177
1177
  switch (t) {
1178
1178
  case "sqlite":
@@ -1180,92 +1180,92 @@ BEGIN
1180
1180
  case "mssql": return e === "json" ? "text" : e;
1181
1181
  default: return e;
1182
1182
  }
1183
- }, xn = (e, t, n) => {
1183
+ }, Sn = (e, t, n) => {
1184
1184
  let r = `acknowledge it on the column: \`.narrowedFrom('${e}')\``;
1185
1185
  return n === "postgres" ? `${r} — add \`{ using: '${t.name}::${t.type}' }\` when the cast is not implicit, or use a file-based migration` : `${r} — ${n === void 0 ? "this dialect" : n} converts in place (\`using\` is postgres-only and is ignored here), so verify the conversion is value-preserving for your data, or use a file-based migration`;
1186
- }, Sn = (e, n, r, i, a, o) => {
1186
+ }, Cn = (e, t, r, i, a, o) => {
1187
1187
  let s = [];
1188
- if (n.nullable !== r.nullable) {
1189
- let t = {
1188
+ if (t.nullable !== r.nullable) {
1189
+ let n = {
1190
1190
  kind: "alter-column-nullability",
1191
1191
  table: e,
1192
- column: n.name,
1193
- toNullable: n.nullable
1192
+ column: t.name,
1193
+ toNullable: t.nullable
1194
1194
  };
1195
- s.push(n.nullable ? R(t, "safe", `loosen ${e}.${n.name} to nullable`) : R(t, "needs-backfill", `tighten ${e}.${n.name} to NOT NULL — existing rows must already be non-null`));
1195
+ s.push(t.nullable ? L(n, "safe", `loosen ${e}.${t.name} to nullable`) : L(n, "needs-backfill", `tighten ${e}.${t.name} to NOT NULL — existing rows must already be non-null`));
1196
1196
  }
1197
- if (n.unique !== r.unique) {
1198
- if (n.unique) {
1199
- let t = {
1197
+ if (t.unique !== r.unique) {
1198
+ if (t.unique) {
1199
+ let n = {
1200
1200
  kind: "add-unique",
1201
1201
  table: e,
1202
- column: n.name
1202
+ column: t.name
1203
1203
  }, r = (a ?? 0) >= o;
1204
- s.push(r ? R(t, "online-required", `online unique build on ${a} rows — CONCURRENTLY / INPLACE / WITH(ONLINE=ON) depending on dialect`) : R(t, "safe", `add unique constraint on ${e}.${n.name} — existing rows must already be distinct (else the DB rejects at migrate)`));
1205
- } else s.push(R({
1204
+ s.push(r ? L(n, "online-required", `online unique build on ${a} rows — CONCURRENTLY / INPLACE / WITH(ONLINE=ON) depending on dialect`) : L(n, "safe", `add unique constraint on ${e}.${t.name} — existing rows must already be distinct (else the DB rejects at migrate)`));
1205
+ } else s.push(L({
1206
1206
  kind: "drop-unique",
1207
1207
  table: e,
1208
- column: n.name
1209
- }, "safe", `drop unique constraint on ${e}.${n.name} — constraint is derived metadata, no data loss`));
1208
+ column: t.name
1209
+ }, "safe", `drop unique constraint on ${e}.${t.name} — constraint is derived metadata, no data loss`));
1210
1210
  }
1211
- if (bn(n.type, i) !== bn(r.type, i)) {
1212
- let t = n.narrowedFrom;
1213
- if (t && t.from === r.type) {
1211
+ if (xn(t.type, i) !== xn(r.type, i)) {
1212
+ let n = t.narrowedFrom;
1213
+ if (n && n.from === r.type) {
1214
1214
  let i = {
1215
1215
  kind: "alter-column-type",
1216
1216
  table: e,
1217
- column: n.name,
1217
+ column: t.name,
1218
1218
  from: r.type,
1219
- to: n.type,
1220
- ...t.using === void 0 ? {} : { using: t.using }
1219
+ to: t.type,
1220
+ ...n.using === void 0 ? {} : { using: n.using }
1221
1221
  };
1222
- s.push(R(i, "needs-backfill", `type change ${r.type} → ${n.type} on ${e}.${n.name} — narrowedFrom('${t.from}') declared` + (t.using ? ` with USING ${t.using}` : " (implicit cast)")));
1222
+ s.push(L(i, "needs-backfill", `type change ${r.type} → ${t.type} on ${e}.${t.name} — narrowedFrom('${n.from}') declared` + (n.using ? ` with USING ${n.using}` : " (implicit cast)")));
1223
1223
  } else {
1224
- let t = {
1224
+ let n = {
1225
1225
  kind: "alter-column-type",
1226
1226
  table: e,
1227
- column: n.name,
1227
+ column: t.name,
1228
1228
  from: r.type,
1229
- to: n.type
1229
+ to: t.type
1230
1230
  };
1231
- s.push(R(t, "lossy", `type change ${r.type} → ${n.type} on ${e}.${n.name} may not be value-preserving`, { fix: xn(r.type, n, i) }));
1231
+ s.push(L(n, "lossy", `type change ${r.type} → ${t.type} on ${e}.${t.name} may not be value-preserving`, { fix: Sn(r.type, t, i) }));
1232
1232
  }
1233
1233
  }
1234
- if (n.type === "text" && r.type === "text" && !t(i ?? "postgres") && n.maxLength !== r.maxLength) {
1235
- let t = n.maxLength === void 0 || r.maxLength !== void 0 && n.maxLength > r.maxLength, i = r.maxLength === void 0 ? "unbounded" : `varchar(${r.maxLength})`, a = n.maxLength === void 0 ? "unbounded" : `varchar(${n.maxLength})`;
1236
- s.push(R({
1234
+ if (t.type === "text" && r.type === "text" && !n(i ?? "postgres") && t.maxLength !== r.maxLength) {
1235
+ let n = t.maxLength === void 0 || r.maxLength !== void 0 && t.maxLength > r.maxLength, i = r.maxLength === void 0 ? "unbounded" : `varchar(${r.maxLength})`, a = t.maxLength === void 0 ? "unbounded" : `varchar(${t.maxLength})`;
1236
+ s.push(L({
1237
1237
  kind: "alter-column-type",
1238
1238
  table: e,
1239
- column: n.name,
1239
+ column: t.name,
1240
1240
  from: "text",
1241
1241
  to: "text"
1242
- }, t ? "safe" : "needs-backfill", t ? `text length ${i} → ${a} on ${e}.${n.name} — widening, no data can be lost` : `text length ${i} → ${a} on ${e}.${n.name} — NARROWING; the ALTER fails if any existing value is longer than ${String(n.maxLength)}. Check first: SELECT COUNT(*) FROM ${e} WHERE LENGTH(${n.name}) > ${String(n.maxLength)}`));
1242
+ }, n ? "safe" : "needs-backfill", n ? `text length ${i} → ${a} on ${e}.${t.name} — widening, no data can be lost` : `text length ${i} → ${a} on ${e}.${t.name} — NARROWING; the ALTER fails if any existing value is longer than ${String(t.maxLength)}. Check first: SELECT COUNT(*) FROM ${e} WHERE LENGTH(${t.name}) > ${String(t.maxLength)}`));
1243
1243
  }
1244
- if (!nn(n, r)) {
1245
- let t = {
1244
+ if (!rn(t, r)) {
1245
+ let n = {
1246
1246
  kind: "alter-column-default",
1247
1247
  table: e,
1248
- column: n.name,
1249
- hasDefault: n.hasDefault,
1250
- ...n.defaultValue === void 0 ? {} : { defaultValue: n.defaultValue }
1248
+ column: t.name,
1249
+ hasDefault: t.hasDefault,
1250
+ ...t.defaultValue === void 0 ? {} : { defaultValue: t.defaultValue }
1251
1251
  };
1252
- s.push(R(t, "safe", `default change on ${e}.${n.name} affects only future inserts`));
1252
+ s.push(L(n, "safe", `default change on ${e}.${t.name} affects only future inserts`));
1253
1253
  }
1254
- if (!an(n.oneOf, r.oneOf)) {
1255
- r.oneOf && r.oneOf.length > 0 && s.push(R({
1254
+ if (!on(t.oneOf, r.oneOf)) {
1255
+ r.oneOf && r.oneOf.length > 0 && s.push(L({
1256
1256
  kind: "drop-check",
1257
1257
  table: e,
1258
- column: n.name
1259
- }, "safe", `drop stale enum CHECK on ${e}.${n.name}`));
1260
- let t = ln(e, n);
1261
- t && s.push(t);
1258
+ column: t.name
1259
+ }, "safe", `drop stale enum CHECK on ${e}.${t.name}`));
1260
+ let n = un(e, t);
1261
+ n && s.push(n);
1262
1262
  }
1263
- return JSON.stringify(rn(n.references)) !== JSON.stringify(rn(r.references)) && (r.references && s.push(R({
1263
+ return JSON.stringify(an(t.references)) !== JSON.stringify(an(r.references)) && (r.references && s.push(L({
1264
1264
  kind: "drop-foreign-key",
1265
1265
  table: e,
1266
- column: n.name
1267
- }, "safe", `drop FK on ${e}.${n.name} (→ ${r.references.table})`)), s.push(...Cn(e, n))), s;
1268
- }, Cn = (e, t) => {
1266
+ column: t.name
1267
+ }, "safe", `drop FK on ${e}.${t.name} (→ ${r.references.table})`)), s.push(...wn(e, t))), s;
1268
+ }, wn = (e, t) => {
1269
1269
  let n = [];
1270
1270
  if (!t.references) return n;
1271
1271
  let r = t.references.table, i = t.references.orphanPolicy ?? "fail", a = {
@@ -1277,15 +1277,15 @@ BEGIN
1277
1277
  ...t.references.onDelete ? { onDelete: t.references.onDelete } : {},
1278
1278
  ...t.references.onUpdate ? { onUpdate: t.references.onUpdate } : {}
1279
1279
  };
1280
- return i === "null" && !t.nullable ? n.push(R(a, "lossy", `add FK ${e}.${t.name} → ${r}: orphanPolicy 'null' needs a nullable column (the NULL-out would violate NOT NULL)`, { fix: `make ${t.name} \`.nullable()\`, OR use \`orphanPolicy: 'delete'\`, OR clean the orphans and drop the policy` })) : i === "null" || i === "delete" ? n.push(R({
1280
+ return i === "null" && !t.nullable ? n.push(L(a, "lossy", `add FK ${e}.${t.name} → ${r}: orphanPolicy 'null' needs a nullable column (the NULL-out would violate NOT NULL)`, { fix: `make ${t.name} \`.nullable()\`, OR use \`orphanPolicy: 'delete'\`, OR clean the orphans and drop the policy` })) : i === "null" || i === "delete" ? n.push(L({
1281
1281
  ...a,
1282
1282
  orphanPolicy: i
1283
- }, "lossy", i === "delete" ? `add FK ${e}.${t.name} → ${r}: orphanPolicy 'delete' first DELETES rows whose ${t.name} points at a missing ${r}` : `add FK ${e}.${t.name} → ${r}: orphanPolicy 'null' first NULLs ${t.name} where it points at a missing ${r}`)) : n.push(R(a, "needs-backfill", `add FK ${e}.${t.name} → ${r} — existing rows must already reference a valid ${r} (else set orphanPolicy:'null'/'delete')`)), n;
1284
- }, wn = (e, t, n) => {
1283
+ }, "lossy", i === "delete" ? `add FK ${e}.${t.name} → ${r}: orphanPolicy 'delete' first DELETES rows whose ${t.name} points at a missing ${r}` : `add FK ${e}.${t.name} → ${r}: orphanPolicy 'null' first NULLs ${t.name} where it points at a missing ${r}`)) : n.push(L(a, "needs-backfill", `add FK ${e}.${t.name} → ${r} — existing rows must already reference a valid ${r} (else set orphanPolicy:'null'/'delete')`)), n;
1284
+ }, Tn = (e, t, n) => {
1285
1285
  let r = [], i = /* @__PURE__ */ new Set(), a = /* @__PURE__ */ new Set(), o = new Set(n.removed.map((e) => e.name)), s = new Set(n.added.map((e) => e.name));
1286
1286
  for (let [n, c] of Object.entries(t)) {
1287
1287
  let t = c.renamedFrom;
1288
- t && o.has(t) && s.has(n) && (i.add(n), a.add(t), r.push(R({
1288
+ t && o.has(t) && s.has(n) && (i.add(n), a.add(t), r.push(L({
1289
1289
  kind: "rename-column",
1290
1290
  table: e.tableName,
1291
1291
  from: t,
@@ -1297,26 +1297,26 @@ BEGIN
1297
1297
  consumedAddedNames: i,
1298
1298
  consumedRemovedNames: a
1299
1299
  };
1300
- }, Tn = /* @__PURE__ */ new Set([
1300
+ }, En = /* @__PURE__ */ new Set([
1301
1301
  "postgres",
1302
1302
  "mysql",
1303
1303
  "mariadb",
1304
1304
  "mssql"
1305
- ]), En = {
1305
+ ]), Dn = {
1306
1306
  ops: [],
1307
1307
  consumedAddedNames: /* @__PURE__ */ new Set(),
1308
1308
  consumedRemovedNames: /* @__PURE__ */ new Set()
1309
- }, Dn = (e) => !e.unique && !e.expression, On = (e, t, n, r, i) => {
1310
- if (i === void 0 || !Tn.has(i)) return En;
1311
- let a = t.added.filter((e) => Dn(e) && !r.has(e.name));
1312
- if (a.length === 0) return En;
1309
+ }, On = (e) => !e.unique && !e.expression, kn = (e, t, n, r, i) => {
1310
+ if (i === void 0 || !En.has(i)) return Dn;
1311
+ let a = t.added.filter((e) => On(e) && !r.has(e.name));
1312
+ if (a.length === 0) return Dn;
1313
1313
  let o = (e) => e.columns.map((e) => n.get(e) ?? e).join("\0"), s = (e) => e.columns.join("\0"), c = [], l = /* @__PURE__ */ new Set(), u = /* @__PURE__ */ new Set();
1314
1314
  for (let n of t.removed) {
1315
- if (!Dn(n)) continue;
1315
+ if (!On(n)) continue;
1316
1316
  let t = o(n), r = a.filter((e) => !l.has(e.name) && s(e) === t);
1317
1317
  if (r.length !== 1) continue;
1318
1318
  let i = r[0];
1319
- i.name !== n.name && (l.add(i.name), u.add(n.name), c.push(R({
1319
+ i.name !== n.name && (l.add(i.name), u.add(n.name), c.push(L({
1320
1320
  kind: "rename-index",
1321
1321
  table: e,
1322
1322
  from: n.name,
@@ -1328,7 +1328,7 @@ BEGIN
1328
1328
  consumedAddedNames: l,
1329
1329
  consumedRemovedNames: u
1330
1330
  };
1331
- }, kn = (e, t, n) => {
1331
+ }, An = (e, t, n) => {
1332
1332
  let r = [], i = /* @__PURE__ */ new Map(), a = /* @__PURE__ */ new Set(), o = /* @__PURE__ */ new Map(), s = /* @__PURE__ */ new Map(), c = /* @__PURE__ */ new Set();
1333
1333
  for (let t of e.tables) t.renamedFrom !== void 0 && (s.set(t.renamedFrom, (s.get(t.renamedFrom) ?? 0) + 1), c.add(t.renamedFrom));
1334
1334
  for (let c of e.tables) {
@@ -1339,7 +1339,7 @@ BEGIN
1339
1339
  continue;
1340
1340
  }
1341
1341
  if (t.has(c.name)) {
1342
- r.push(R({
1342
+ r.push(L({
1343
1343
  kind: "rename-table",
1344
1344
  from: e,
1345
1345
  to: c.name
@@ -1347,14 +1347,14 @@ BEGIN
1347
1347
  continue;
1348
1348
  }
1349
1349
  if ((s.get(e) ?? 0) !== 1) {
1350
- r.push(R({
1350
+ r.push(L({
1351
1351
  kind: "rename-table",
1352
1352
  from: e,
1353
1353
  to: c.name
1354
1354
  }, "needs-rename-annotation", `.renamedFrom('${e}') is claimed by ${s.get(e)} tables — nothing says which receives its rows`, { fix: `remove the \`.renamedFrom('${e}')\` marker from all but one of them.` }));
1355
1355
  continue;
1356
1356
  }
1357
- i.set(c.name, e), a.add(e), r.push(R({
1357
+ i.set(c.name, e), a.add(e), r.push(L({
1358
1358
  kind: "rename-table",
1359
1359
  from: e,
1360
1360
  to: c.name
@@ -1368,19 +1368,19 @@ BEGIN
1368
1368
  claimedOldNames: c,
1369
1369
  refusals: o
1370
1370
  };
1371
- }, An = (e, t, n, r) => {
1371
+ }, jn = (e, t, n, r) => {
1372
1372
  if (t === void 0) return {
1373
1373
  live: e,
1374
1374
  ops: []
1375
1375
  };
1376
- let i = r !== void 0 && Tn.has(r), a = [], o = e.indexes.map((e) => {
1376
+ let i = r !== void 0 && En.has(r), a = [], o = e.indexes.map((e) => {
1377
1377
  if (!e.name.startsWith(t)) return e;
1378
1378
  let r = `${n}${e.name.slice(t.length)}`;
1379
1379
  return r === e.name ? e : e.name === `${t}_pkey` ? {
1380
1380
  ...e,
1381
1381
  name: r,
1382
1382
  table: n
1383
- } : i ? (a.push(R({
1383
+ } : i ? (a.push(L({
1384
1384
  kind: "rename-index",
1385
1385
  table: n,
1386
1386
  from: e.name,
@@ -1399,7 +1399,7 @@ BEGIN
1399
1399
  },
1400
1400
  ops: a
1401
1401
  };
1402
- }, jn = (e) => {
1402
+ }, Mn = (e) => {
1403
1403
  let t = {
1404
1404
  safe: 0,
1405
1405
  needsDefault: 0,
@@ -1432,42 +1432,42 @@ BEGIN
1432
1432
  case "multi-step": t.multiStep++;
1433
1433
  }
1434
1434
  return t;
1435
- }, Mn = (e) => {
1436
- let t = I(e.declared, e.dialect), n = en(e.declared, t), r = new Map(e.live.tables.map((e) => [e.name, e])), i = e.onlineAfter ?? _n, a = [], o = kn(t, r, n);
1435
+ }, Nn = (e) => {
1436
+ let t = F(e.declared, e.dialect), n = tn(e.declared, t), r = new Map(e.live.tables.map((e) => [e.name, e])), i = e.onlineAfter ?? vn, a = [], o = An(t, r, n);
1437
1437
  a.push(...o.ops);
1438
1438
  for (let e of t.tables) if (!o.renamedInto.has(e.name) && !r.has(e.name)) {
1439
- a.push(hn(e.name, e.columns, e.indexes, e.primaryKey, o.refusals.get(e.name)));
1439
+ a.push(gn(e.name, e.columns, e.indexes, e.primaryKey, o.refusals.get(e.name)));
1440
1440
  for (let t of e.columns) {
1441
- let n = ln(e.name, t);
1441
+ let n = un(e.name, t);
1442
1442
  n && a.push(n);
1443
1443
  }
1444
1444
  }
1445
1445
  let s = new Set(e.ignoreTables ?? []);
1446
- for (let t of e.live.tables) n.has(t.name) || o.claimedOldNames.has(t.name) || m(t.name) || v(t.name) || s.has(t.name) || a.push(gn(t.name));
1446
+ for (let t of e.live.tables) n.has(t.name) || o.claimedOldNames.has(t.name) || h(t.name) || y(t.name) || s.has(t.name) || a.push(_n(t.name));
1447
1447
  for (let s of t.tables) {
1448
1448
  let t = o.renamedInto.get(s.name), c = r.get(s.name) ?? (t === void 0 ? void 0 : r.get(t));
1449
1449
  if (!c) continue;
1450
- let l = An(c, t, s.name, e.dialect);
1450
+ let l = jn(c, t, s.name, e.dialect);
1451
1451
  a.push(...l.ops);
1452
- let u = l.live, d = n.get(s.name), f = dn(s, u, e.dialect), p = fn(s, u), m = wn(d.table, d.columnDefs, f);
1452
+ let u = l.live, d = n.get(s.name), f = fn(s, u, e.dialect), p = pn(s, u), m = Tn(d.table, d.columnDefs, f);
1453
1453
  a.push(...m.ops);
1454
1454
  for (let e of f.removed) {
1455
- if (m.consumedRemovedNames.has(e.name) || v(e.name)) continue;
1455
+ if (m.consumedRemovedNames.has(e.name) || y(e.name)) continue;
1456
1456
  let t = d.columnDefs[e.name];
1457
- a.push(mn(s.name, e, t));
1457
+ a.push(hn(s.name, e, t));
1458
1458
  }
1459
1459
  for (let e of f.added) {
1460
1460
  if (m.consumedAddedNames.has(e.name)) continue;
1461
1461
  let t = d.columnDefs[e.name];
1462
- a.push(pn(s.name, e, t));
1463
- let n = ln(s.name, e);
1464
- n && a.push(n), a.push(...Cn(s.name, e));
1462
+ a.push(mn(s.name, e, t));
1463
+ let n = un(s.name, e);
1464
+ n && a.push(n), a.push(...wn(s.name, e));
1465
1465
  }
1466
- let h = new Map(m.ops.flatMap((e) => e.op.kind === "rename-column" ? [[e.op.from, e.op.to]] : [])), g = On(s.name, p, h, new Set(u.indexes.map((e) => e.name)), e.dialect);
1466
+ let h = new Map(m.ops.flatMap((e) => e.op.kind === "rename-column" ? [[e.op.from, e.op.to]] : [])), g = kn(s.name, p, h, new Set(u.indexes.map((e) => e.name)), e.dialect);
1467
1467
  a.push(...g.ops);
1468
- for (let e of p.added) g.consumedAddedNames.has(e.name) || a.push(vn(s.name, e, u.rowCount, i));
1469
- for (let e of p.removed) g.consumedRemovedNames.has(e.name) || a.push(yn(s.name, e));
1470
- for (let { declared: t, live: n } of f.changed) a.push(...Sn(s.name, t, n, e.dialect, u.rowCount, i));
1468
+ for (let e of p.added) g.consumedAddedNames.has(e.name) || a.push(yn(s.name, e, u.rowCount, i));
1469
+ for (let e of p.removed) g.consumedRemovedNames.has(e.name) || a.push(bn(s.name, e));
1470
+ for (let { declared: t, live: n } of f.changed) a.push(...Cn(s.name, t, n, e.dialect, u.rowCount, i));
1471
1471
  }
1472
1472
  let c = new Set(a.flatMap((e) => e.op.kind === "create-table" ? [e.op.table] : [])), l = new Map(t.tables.map((e) => [e.name, e])), u = (e) => {
1473
1473
  let t = l.get(e);
@@ -1476,7 +1476,7 @@ BEGIN
1476
1476
  target: e.references.table
1477
1477
  }] : []) : [];
1478
1478
  }, d = fe([...c], u), f = [];
1479
- for (let e of t.tables) if (c.has(e.name)) for (let t of e.columns) !t.references || !d.has(w(e.name, t.name)) || f.push(R({
1479
+ for (let e of t.tables) if (c.has(e.name)) for (let t of e.columns) !t.references || !d.has(w(e.name, t.name)) || f.push(L({
1480
1480
  kind: "add-foreign-key",
1481
1481
  table: e.name,
1482
1482
  column: t.name,
@@ -1503,8 +1503,8 @@ BEGIN
1503
1503
  }
1504
1504
  a.push(...f);
1505
1505
  }
1506
- let p = new Map(t.tables.map((e) => [e.name, e])), h = /* @__PURE__ */ new Map(), g = (e, t = /* @__PURE__ */ new Set()) => {
1507
- let n = h.get(e);
1506
+ let p = new Map(t.tables.map((e) => [e.name, e])), m = /* @__PURE__ */ new Map(), g = (e, t = /* @__PURE__ */ new Set()) => {
1507
+ let n = m.get(e);
1508
1508
  if (n !== void 0) return n;
1509
1509
  if (t.has(e)) return 0;
1510
1510
  let r = p.get(e);
@@ -1514,8 +1514,8 @@ BEGIN
1514
1514
  let n = t.references?.table;
1515
1515
  n && n !== e && !d.has(w(e, t.name)) && (a = Math.max(a, g(n, i) + 1));
1516
1516
  }
1517
- return h.set(e, a), a;
1518
- }, _ = (e) => e === "rename-table" ? -1 : e === "create-table" ? 0 : e === "drop-table" ? 2 : 1, y = (e) => {
1517
+ return m.set(e, a), a;
1518
+ }, _ = (e) => e === "rename-table" ? -1 : e === "create-table" ? 0 : e === "drop-table" ? 2 : 1, v = (e) => {
1519
1519
  let t = "table" in e ? e.table : "";
1520
1520
  return e.kind === "create-table" ? g(t) : e.kind === "drop-table" ? -g(t) : 0;
1521
1521
  }, b = {
@@ -1539,7 +1539,7 @@ BEGIN
1539
1539
  }, x = (e) => b[e] ?? 9, S = [...a].sort((e, t) => {
1540
1540
  let n = _(e.op.kind), r = _(t.op.kind);
1541
1541
  if (n !== r) return n - r;
1542
- let i = y(e.op), a = y(t.op);
1542
+ let i = v(e.op), a = v(t.op);
1543
1543
  if (i !== a) return i - a;
1544
1544
  let o = "table" in e.op ? e.op.table : "", s = "table" in t.op ? t.op.table : "";
1545
1545
  if (o !== s) return o.localeCompare(s);
@@ -1550,9 +1550,9 @@ BEGIN
1550
1550
  operations: S,
1551
1551
  fromFingerprint: P(e.live),
1552
1552
  toFingerprint: P(t),
1553
- summary: jn(S)
1553
+ summary: Mn(S)
1554
1554
  };
1555
- }, Nn = (e) => {
1555
+ }, Pn = (e) => {
1556
1556
  let t = /[`"[]?([A-Za-z_][A-Za-z0-9_]*)[`"\]]?\s*(?:in\b|=)/i.exec(e);
1557
1557
  if (!t) return null;
1558
1558
  let n = [...e.replace(/\\'/g, "'").matchAll(/'((?:[^']|'')*)'/g)].map((e) => e[1].replace(/''/g, "'")).filter((e) => e.length > 0);
@@ -1560,7 +1560,7 @@ BEGIN
1560
1560
  column: t[1],
1561
1561
  values: n
1562
1562
  };
1563
- }, Pn = (e, t) => {
1563
+ }, Fn = (e, t) => {
1564
1564
  if (t === "vector") return "vector";
1565
1565
  switch (e) {
1566
1566
  case "text":
@@ -1587,10 +1587,10 @@ BEGIN
1587
1587
  case "USER-DEFINED": return "text";
1588
1588
  default: return "text";
1589
1589
  }
1590
- }, Fn = (e, t) => e == null || e === "" ? void 0 : { generatedAs: {
1590
+ }, In = (e, t) => e == null || e === "" ? void 0 : { generatedAs: {
1591
1591
  expr: e,
1592
1592
  stored: t
1593
- } }, z = (e) => {
1593
+ } }, R = (e) => {
1594
1594
  switch (e.toUpperCase()) {
1595
1595
  case "CASCADE": return "cascade";
1596
1596
  case "RESTRICT": return "restrict";
@@ -1598,25 +1598,25 @@ BEGIN
1598
1598
  case "SET DEFAULT": return "noAction";
1599
1599
  default: return "noAction";
1600
1600
  }
1601
- }, In = (e, t) => {
1601
+ }, Ln = (e, t) => {
1602
1602
  let n = e !== void 0 && e !== "" ? Number(e) : NaN;
1603
1603
  return Number.isInteger(n) && n > 0 ? n : t;
1604
- }, Ln = () => In(process.env.VOLTRO_INTROSPECT_BATCH, 20), Rn = 300, zn = () => {
1604
+ }, Rn = () => Ln(process.env.VOLTRO_INTROSPECT_BATCH, 20), zn = 300, Bn = () => {
1605
1605
  let e = process.env.VOLTRO_INTROSPECT_TIMEOUT_MS;
1606
- return e !== void 0 && e.trim() === "0" ? 0 : In(e, 3e4);
1607
- }, Bn = (e, t) => {
1606
+ return e !== void 0 && e.trim() === "0" ? 0 : Ln(e, 3e4);
1607
+ }, Vn = (e, t) => {
1608
1608
  let n = Number.isFinite(t) && t >= 1 ? Math.floor(t) : 1, r = [];
1609
1609
  for (let t = 0; t < e.length; t += n) r.push(e.slice(t, t + n));
1610
1610
  return r;
1611
- }, Vn = (e) => {
1612
- let t = zn(), n = x.gen(function* () {
1611
+ }, Hn = (e) => {
1612
+ let t = Bn(), n = x.gen(function* () {
1613
1613
  t > 0 && (yield* e.unsafe(`SET LOCAL statement_timeout = ${t}`));
1614
- let n = (t) => e.unsafe("(" + t.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ") + ")"), r = (t) => e.unsafe(String(Math.max(0, Math.trunc(t)))), i = Ln(), a = (e, t) => x.gen(function* () {
1614
+ let n = (t) => e.unsafe("(" + t.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ") + ")"), r = (t) => e.unsafe(String(Math.max(0, Math.trunc(t)))), i = Rn(), a = (e, t) => x.gen(function* () {
1615
1615
  let r = [];
1616
- for (let a of Bn(e, i)) a.length !== 0 && r.push(...yield* t(n(a)));
1616
+ for (let a of Vn(e, i)) a.length !== 0 && r.push(...yield* t(n(a)));
1617
1617
  return r;
1618
1618
  }), o = [];
1619
- for (let t = 0;; t += Rn) {
1619
+ for (let t = 0;; t += zn) {
1620
1620
  let n = yield* e`
1621
1621
  SELECT c.relname AS table_name,
1622
1622
  COALESCE(c.reltuples::bigint, 0) AS row_count
@@ -1624,9 +1624,9 @@ BEGIN
1624
1624
  JOIN pg_namespace n ON n.oid = c.relnamespace
1625
1625
  WHERE n.nspname = current_schema() AND c.relkind = 'r'
1626
1626
  ORDER BY c.relname
1627
- LIMIT ${r(Rn)} OFFSET ${r(t)}
1627
+ LIMIT ${r(zn)} OFFSET ${r(t)}
1628
1628
  `;
1629
- if (o.push(...n), n.length < Rn) break;
1629
+ if (o.push(...n), n.length < zn) break;
1630
1630
  }
1631
1631
  let s = /* @__PURE__ */ new Set(), c = [];
1632
1632
  for (let e of o) s.has(e.table_name) || (s.add(e.table_name), c.push(e));
@@ -1760,23 +1760,23 @@ BEGIN
1760
1760
  let C = [];
1761
1761
  for (let e of c) {
1762
1762
  let t = /* @__PURE__ */ new Set(), n = (_.get(e.table_name) ?? []).filter((e) => !t.has(e.column_name) && (t.add(e.column_name), !0)), r = v.get(e.table_name) ?? /* @__PURE__ */ new Set(), i = y.get(e.table_name) ?? /* @__PURE__ */ new Set(), a = S.get(e.table_name) ?? [], o = new Map(a.map((e) => [e.source_column, e])), s = new Set(n.filter((e) => e.udt_name === "tsvector").map((e) => e.column_name)), c = n.filter((e) => !s.has(e.column_name)).map((t) => {
1763
- let n = r.has(t.column_name) && r.size === 1, a = o.get(t.column_name), s = a ? "reference" : n && t.column_name === "id" ? "id" : Pn(t.data_type, t.udt_name), c = a ? {
1763
+ let n = r.has(t.column_name) && r.size === 1, a = o.get(t.column_name), s = a ? "reference" : n && t.column_name === "id" ? "id" : Fn(t.data_type, t.udt_name), c = a ? {
1764
1764
  table: a.target_table,
1765
1765
  column: a.target_column,
1766
- onDelete: z(a.delete_rule),
1767
- onUpdate: z(a.update_rule)
1766
+ onDelete: R(a.delete_rule),
1767
+ onUpdate: R(a.update_rule)
1768
1768
  } : void 0, l = m.get(`${e.table_name}.${t.column_name}`);
1769
1769
  return {
1770
1770
  name: t.column_name,
1771
1771
  type: s,
1772
- ...H(t.data_type, t.character_maximum_length) === void 0 ? {} : { maxLength: H(t.data_type, t.character_maximum_length) },
1772
+ ...V(t.data_type, t.character_maximum_length) === void 0 ? {} : { maxLength: V(t.data_type, t.character_maximum_length) },
1773
1773
  nullable: t.is_nullable === "YES",
1774
1774
  unique: i.has(t.column_name) || n && t.column_name === "id",
1775
1775
  hasDefault: t.column_default !== null,
1776
1776
  ...t.column_default === null ? {} : { defaultValue: t.column_default },
1777
1777
  ...c ? { references: c } : {},
1778
1778
  ...l ? { oneOf: l } : {},
1779
- ...Fn(t.is_generated === "ALWAYS" ? t.generation_expression ?? "generated" : null, !0) ?? {}
1779
+ ...In(t.is_generated === "ALWAYS" ? t.generation_expression ?? "generated" : null, !0) ?? {}
1780
1780
  };
1781
1781
  }), l = [], u = ee.get(e.table_name);
1782
1782
  if (u) for (let [t, n] of u) {
@@ -1815,7 +1815,7 @@ BEGIN
1815
1815
  let n = `${String(e)} ${String(e.cause ?? "")}`.toLowerCase();
1816
1816
  return n.includes("statement timeout") || n.includes("57014") ? x.die(/* @__PURE__ */ Error(`schema introspection exceeded VOLTRO_INTROSPECT_TIMEOUT_MS (${t}ms) — the schema is very large / FK-dense or the database is slow. Raise VOLTRO_INTROSPECT_TIMEOUT_MS, set it to 0 to disable the ceiling, or use DB_DIRECT_URL for a non-pooler connection.`)) : x.fail(e);
1817
1817
  }));
1818
- }, Hn = (e, t) => {
1818
+ }, Un = (e, t) => {
1819
1819
  switch (e.toLowerCase()) {
1820
1820
  case "varchar":
1821
1821
  case "char":
@@ -1847,21 +1847,21 @@ BEGIN
1847
1847
  case "json": return "json";
1848
1848
  default: return "text";
1849
1849
  }
1850
- }, B = (e) => e.map((e) => {
1850
+ }, z = (e) => e.map((e) => {
1851
1851
  let t = e, n = {};
1852
1852
  for (let e of Object.keys(t)) n[e.toLowerCase()] = t[e];
1853
1853
  return n;
1854
- }), Un = (e) => x.gen(function* () {
1855
- let t = B(yield* e`
1854
+ }), Wn = (e) => x.gen(function* () {
1855
+ let t = z(yield* e`
1856
1856
  SELECT table_name, COALESCE(table_rows, 0) AS table_rows
1857
1857
  FROM information_schema.tables
1858
1858
  WHERE table_schema = DATABASE() AND table_type = 'BASE TABLE'
1859
- ORDER BY table_name`), n = B(yield* e`
1859
+ ORDER BY table_name`), n = z(yield* e`
1860
1860
  SELECT table_name, column_name, data_type, column_type, is_nullable, column_default, column_key,
1861
1861
  character_maximum_length, generation_expression, extra
1862
1862
  FROM information_schema.columns
1863
1863
  WHERE table_schema = DATABASE()
1864
- ORDER BY table_name, ordinal_position`), r = B(yield* e`
1864
+ ORDER BY table_name, ordinal_position`), r = z(yield* e`
1865
1865
  SELECT k.table_name AS source_table,
1866
1866
  k.column_name AS source_column,
1867
1867
  k.referenced_table_name AS target_table,
@@ -1871,7 +1871,7 @@ BEGIN
1871
1871
  JOIN information_schema.referential_constraints r
1872
1872
  ON k.constraint_name = r.constraint_name
1873
1873
  AND k.table_schema = r.constraint_schema
1874
- WHERE k.table_schema = DATABASE() AND k.referenced_table_name IS NOT NULL`), i = B(yield* e`
1874
+ WHERE k.table_schema = DATABASE() AND k.referenced_table_name IS NOT NULL`), i = z(yield* e`
1875
1875
  SELECT table_name, index_name, non_unique, column_name, seq_in_index
1876
1876
  FROM information_schema.statistics
1877
1877
  WHERE table_schema = DATABASE() AND index_name <> 'PRIMARY'
@@ -1884,14 +1884,14 @@ BEGIN
1884
1884
  JOIN information_schema.table_constraints tc
1885
1885
  ON tc.constraint_schema = cc.constraint_schema
1886
1886
  AND tc.constraint_name = cc.constraint_name
1887
- WHERE cc.constraint_schema = DATABASE()`.unprepared, s = B(yield* a.pipe(x.orElse(() => o), x.orElseSucceed(() => []))), c = /* @__PURE__ */ new Set(), l = /* @__PURE__ */ new Map();
1887
+ WHERE cc.constraint_schema = DATABASE()`.unprepared, s = z(yield* a.pipe(x.orElse(() => o), x.orElseSucceed(() => []))), c = /* @__PURE__ */ new Set(), l = /* @__PURE__ */ new Map();
1888
1888
  for (let e of s) {
1889
1889
  let t = /json_valid\(`?([^`)]+)`?\)/i.exec(e.check_clause);
1890
1890
  if (t) {
1891
1891
  c.add(`${e.table_name}.${t[1]}`);
1892
1892
  continue;
1893
1893
  }
1894
- let n = Nn(e.check_clause);
1894
+ let n = Pn(e.check_clause);
1895
1895
  n && l.set(`${e.table_name}.${n.column}`, n.values);
1896
1896
  }
1897
1897
  let u = /* @__PURE__ */ new Map(), d = /* @__PURE__ */ new Map(), f = /* @__PURE__ */ new Map();
@@ -1914,23 +1914,23 @@ BEGIN
1914
1914
  let t = u.get(e.table_name) ?? [], n = d.get(e.table_name) ?? [], r = new Map(n.map((e) => [e.source_column, e])), i = t.filter((e) => e.column_key === "PRI").map((e) => e.column_name), a = /* @__PURE__ */ new Set(), o = f.get(e.table_name);
1915
1915
  if (o) for (let e of o.values()) e.length === 1 && e[0].non_unique === 0 && a.add(e[0].column_name);
1916
1916
  let s = t.map((t) => {
1917
- let n = i.includes(t.column_name) && i.length === 1, o = r.get(t.column_name), s = o ? "reference" : n && t.column_name === "id" ? "id" : c.has(`${e.table_name}.${t.column_name}`) ? "json" : Hn(t.data_type, t.column_type), u = o ? {
1917
+ let n = i.includes(t.column_name) && i.length === 1, o = r.get(t.column_name), s = o ? "reference" : n && t.column_name === "id" ? "id" : c.has(`${e.table_name}.${t.column_name}`) ? "json" : Un(t.data_type, t.column_type), u = o ? {
1918
1918
  table: o.target_table,
1919
1919
  column: o.target_column,
1920
- onDelete: z(o.delete_rule),
1921
- onUpdate: z(o.update_rule)
1920
+ onDelete: R(o.delete_rule),
1921
+ onUpdate: R(o.update_rule)
1922
1922
  } : void 0, d = a.has(t.column_name) || n && t.column_name === "id", f = t.column_default === "NULL" ? null : t.column_default, p = l.get(`${e.table_name}.${t.column_name}`);
1923
1923
  return {
1924
1924
  name: t.column_name,
1925
1925
  type: s,
1926
1926
  nullable: t.is_nullable === "YES",
1927
- ...H(t.data_type, t.character_maximum_length) === void 0 ? {} : { maxLength: H(t.data_type, t.character_maximum_length) },
1927
+ ...V(t.data_type, t.character_maximum_length) === void 0 ? {} : { maxLength: V(t.data_type, t.character_maximum_length) },
1928
1928
  unique: d,
1929
1929
  hasDefault: f !== null,
1930
1930
  ...f === null ? {} : { defaultValue: f },
1931
1931
  ...u ? { references: u } : {},
1932
1932
  ...p ? { oneOf: p } : {},
1933
- ...Fn(t.generation_expression, /STORED/i.test(t.extra ?? "")) ?? {}
1933
+ ...In(t.generation_expression, /STORED/i.test(t.extra ?? "")) ?? {}
1934
1934
  };
1935
1935
  }), m = new Set(n.map((e) => e.source_column)), h = [];
1936
1936
  if (o) for (let [t, n] of o) {
@@ -1957,10 +1957,10 @@ BEGIN
1957
1957
  });
1958
1958
  }
1959
1959
  return { tables: p };
1960
- }), Wn = (e) => {
1960
+ }), Gn = (e) => {
1961
1961
  let t = e.toUpperCase();
1962
1962
  return t.includes("INT") ? "integer" : t.includes("REAL") || t.includes("FLOA") || t.includes("DOUB") ? "real" : t.includes("BLOB") ? "bytes" : "text";
1963
- }, Gn = (e) => x.gen(function* () {
1963
+ }, Kn = (e) => x.gen(function* () {
1964
1964
  let t = yield* e`
1965
1965
  SELECT name, sql FROM sqlite_master
1966
1966
  WHERE type = 'table' AND name NOT LIKE 'sqlite_%'
@@ -1977,11 +1977,11 @@ BEGIN
1977
1977
  d.set(t.name, r), t.unique === 1 && r.length === 1 && f.add(r[0]);
1978
1978
  }
1979
1979
  let p = o.map((e) => {
1980
- let n = u.length === 1 && u[0] === e.name, r = l.get(e.name), i = r ? "reference" : n && e.name === "id" ? "id" : Wn(e.type), a = r ? {
1980
+ let n = u.length === 1 && u[0] === e.name, r = l.get(e.name), i = r ? "reference" : n && e.name === "id" ? "id" : Gn(e.type), a = r ? {
1981
1981
  table: r.table,
1982
1982
  column: r.to,
1983
- onDelete: z(r.on_delete),
1984
- onUpdate: z(r.on_update)
1983
+ onDelete: R(r.on_delete),
1984
+ onUpdate: R(r.on_update)
1985
1985
  } : void 0, o = t.get(e.name);
1986
1986
  return {
1987
1987
  name: e.name,
@@ -1992,7 +1992,7 @@ BEGIN
1992
1992
  ...e.dflt_value === null ? {} : { defaultValue: e.dflt_value },
1993
1993
  ...a ? { references: a } : {},
1994
1994
  ...o ? { oneOf: o } : {},
1995
- ...Fn(e.hidden === 2 || e.hidden === 3 ? "generated" : null, e.hidden === 3) ?? {}
1995
+ ...In(e.hidden === 2 || e.hidden === 3 ? "generated" : null, e.hidden === 3) ?? {}
1996
1996
  };
1997
1997
  }), m = new Set(s.map((e) => e.from)), h = [];
1998
1998
  for (let e of c) {
@@ -2017,7 +2017,7 @@ BEGIN
2017
2017
  });
2018
2018
  }
2019
2019
  return { tables: r };
2020
- }), Kn = (e) => {
2020
+ }), qn = (e) => {
2021
2021
  switch (e.toLowerCase()) {
2022
2022
  case "int":
2023
2023
  case "smallint":
@@ -2039,7 +2039,7 @@ BEGIN
2039
2039
  case "image": return "bytes";
2040
2040
  default: return "text";
2041
2041
  }
2042
- }, V = (e) => e === !0 || e === 1, qn = (e) => x.gen(function* () {
2042
+ }, B = (e) => e === !0 || e === 1, Jn = (e) => x.gen(function* () {
2043
2043
  let t = yield* e`
2044
2044
  SELECT TABLE_NAME AS table_name FROM INFORMATION_SCHEMA.TABLES
2045
2045
  WHERE TABLE_TYPE = 'BASE TABLE' ORDER BY TABLE_NAME`, n = yield* e`
@@ -2101,36 +2101,36 @@ BEGIN
2101
2101
  let t = l.get(e) ?? [], n = u.get(e) ?? [], r = new Map(n.map((e) => [e.source_column, e])), a = new Set(n.map((e) => e.source_column)), o = d.get(e), s = [], p = /* @__PURE__ */ new Set();
2102
2102
  if (o) for (let [, e] of o) {
2103
2103
  let t = [...e].sort((e, t) => e.key_ordinal - t.key_ordinal);
2104
- if (V(t[0].is_primary)) for (let e of t) s.push(e.column_name);
2105
- else V(t[0].is_unique) && t.length === 1 && p.add(t[0].column_name);
2104
+ if (B(t[0].is_primary)) for (let e of t) s.push(e.column_name);
2105
+ else B(t[0].is_unique) && t.length === 1 && p.add(t[0].column_name);
2106
2106
  }
2107
2107
  let m = t.map((t) => {
2108
- let n = s.length === 1 && s[0] === t.column_name, a = r.get(t.column_name), o = a ? "reference" : n && t.column_name === "id" ? "id" : Kn(t.data_type), l = a ? {
2108
+ let n = s.length === 1 && s[0] === t.column_name, a = r.get(t.column_name), o = a ? "reference" : n && t.column_name === "id" ? "id" : qn(t.data_type), l = a ? {
2109
2109
  table: a.target_table,
2110
2110
  column: a.target_column,
2111
- onDelete: Jn(a.delete_rule),
2112
- onUpdate: Jn(a.update_rule)
2113
- } : void 0, u = t.column_default === null ? null : Yn(t.column_default), d = c.get(`${e}.${t.column_name}`);
2111
+ onDelete: Yn(a.delete_rule),
2112
+ onUpdate: Yn(a.update_rule)
2113
+ } : void 0, u = t.column_default === null ? null : Xn(t.column_default), d = c.get(`${e}.${t.column_name}`);
2114
2114
  return {
2115
2115
  name: t.column_name,
2116
2116
  type: o,
2117
2117
  nullable: t.is_nullable === "YES",
2118
- ...H(t.data_type, t.character_maximum_length) === void 0 ? {} : { maxLength: H(t.data_type, t.character_maximum_length) },
2118
+ ...V(t.data_type, t.character_maximum_length) === void 0 ? {} : { maxLength: V(t.data_type, t.character_maximum_length) },
2119
2119
  unique: p.has(t.column_name) || n && t.column_name === "id",
2120
2120
  hasDefault: u !== null,
2121
2121
  ...u === null ? {} : { defaultValue: u },
2122
2122
  ...l ? { references: l } : {},
2123
2123
  ...d ? { oneOf: d } : {},
2124
- ...Fn(i.get(`${e}.${t.column_name}`)?.definition ?? null, V(i.get(`${e}.${t.column_name}`)?.is_persisted ?? !1)) ?? {}
2124
+ ...In(i.get(`${e}.${t.column_name}`)?.definition ?? null, B(i.get(`${e}.${t.column_name}`)?.is_persisted ?? !1)) ?? {}
2125
2125
  };
2126
2126
  }), h = [];
2127
2127
  if (o) for (let [t, n] of o) {
2128
2128
  let r = [...n].sort((e, t) => e.key_ordinal - t.key_ordinal);
2129
- V(r[0].is_primary) || r.length === 1 && V(r[0].is_unique) || r.length === 1 && !V(r[0].is_unique) && a.has(r[0].column_name) && t !== `${e}_${r[0].column_name}_idx` || h.push({
2129
+ B(r[0].is_primary) || r.length === 1 && B(r[0].is_unique) || r.length === 1 && !B(r[0].is_unique) && a.has(r[0].column_name) && t !== `${e}_${r[0].column_name}_idx` || h.push({
2130
2130
  name: t,
2131
2131
  table: e,
2132
2132
  columns: r.map((e) => e.column_name),
2133
- unique: V(r[0].is_unique)
2133
+ unique: B(r[0].is_unique)
2134
2134
  });
2135
2135
  }
2136
2136
  s.length > 0 && h.push({
@@ -2145,90 +2145,90 @@ BEGIN
2145
2145
  });
2146
2146
  }
2147
2147
  return { tables: f };
2148
- }), Jn = (e) => {
2148
+ }), Yn = (e) => {
2149
2149
  switch (e.toUpperCase().replace(/_/g, " ")) {
2150
2150
  case "CASCADE": return "cascade";
2151
2151
  case "SET NULL": return "setNull";
2152
2152
  case "SET DEFAULT": return "noAction";
2153
2153
  default: return "noAction";
2154
2154
  }
2155
- }, Yn = (e) => {
2155
+ }, Xn = (e) => {
2156
2156
  let t = e.trim();
2157
2157
  for (; t.startsWith("(") && t.endsWith(")");) t = t.slice(1, -1).trim();
2158
2158
  return t.startsWith("N'") && t.endsWith("'") ? t = t.slice(2, -1) : t.startsWith("'") && t.endsWith("'") && (t = t.slice(1, -1)), t;
2159
- }, Xn = /* @__PURE__ */ new Set([
2159
+ }, Zn = /* @__PURE__ */ new Set([
2160
2160
  "character varying",
2161
2161
  "varchar",
2162
2162
  "nvarchar",
2163
2163
  "char",
2164
2164
  "character",
2165
2165
  "nchar"
2166
- ]), H = (e, t) => {
2167
- if (!Xn.has(e.toLowerCase())) return;
2166
+ ]), V = (e, t) => {
2167
+ if (!Zn.has(e.toLowerCase())) return;
2168
2168
  let n = Number(t);
2169
2169
  if (!(!Number.isFinite(n) || n <= 0)) return n;
2170
- }, Zn = /* @__PURE__ */ new Set([D]), Qn = (e) => e.onDialectOrElse({
2171
- mysql: () => Un(e),
2172
- mssql: () => qn(e),
2173
- sqlite: () => Gn(e),
2174
- orElse: () => Vn(e)
2170
+ }, Qn = /* @__PURE__ */ new Set([D]), $n = (e) => e.onDialectOrElse({
2171
+ mysql: () => Wn(e),
2172
+ mssql: () => Jn(e),
2173
+ sqlite: () => Kn(e),
2174
+ orElse: () => Hn(e)
2175
2175
  }).pipe(x.map((e) => ({
2176
2176
  ...e,
2177
- tables: e.tables.filter((e) => !Zn.has(e.name))
2178
- }))), $n = (e) => /mariadb/i.test(e) ? "mariadb" : "mysql", er = /* @__PURE__ */ new WeakMap(), U = (e) => x.suspend(() => {
2179
- let t = er.get(e);
2180
- return t === void 0 ? tr(e).pipe(x.tap((t) => x.sync(() => er.set(e, t)))) : x.succeed(t);
2181
- }), tr = (e) => e.unsafe("SELECT VERSION() AS v").pipe(x.map((e) => {
2177
+ tables: e.tables.filter((e) => !Qn.has(e.name))
2178
+ }))), er = (e) => /mariadb/i.test(e) ? "mariadb" : "mysql", tr = /* @__PURE__ */ new WeakMap(), H = (e) => x.suspend(() => {
2179
+ let t = tr.get(e);
2180
+ return t === void 0 ? nr(e).pipe(x.tap((t) => x.sync(() => tr.set(e, t)))) : x.succeed(t);
2181
+ }), nr = (e) => e.unsafe("SELECT VERSION() AS v").pipe(x.map((e) => {
2182
2182
  let t = e[0]?.v;
2183
- return typeof t == "string" ? $n(t) : "mysql";
2184
- }), x.catchAll(() => x.succeed("mysql"))), nr = (e) => {
2183
+ return typeof t == "string" ? er(t) : "mysql";
2184
+ }), x.catchAll(() => x.succeed("mysql"))), rr = (e) => {
2185
2185
  let t = e;
2186
2186
  for (let e = 0; e < 6 && typeof t == "object" && t; e++) {
2187
2187
  let e = t;
2188
2188
  if (typeof e.errno == "number") return e.errno;
2189
2189
  t = e.cause;
2190
2190
  }
2191
- }, rr = (e) => {
2191
+ }, ir = (e) => {
2192
2192
  let t = [], n = e;
2193
2193
  for (let e = 0; e < 6 && typeof n == "object" && n; e++) {
2194
2194
  let e = n;
2195
2195
  typeof e.message == "string" && t.push(e.message), n = e.cause;
2196
2196
  }
2197
2197
  return t.join(" | ");
2198
- }, ir = (e, t) => {
2198
+ }, ar = (e, t) => {
2199
2199
  if (t.length === 0) return !1;
2200
- let n = nr(e), r = rr(e);
2200
+ let n = rr(e), r = ir(e);
2201
2201
  return t.some((e) => e.errno !== void 0 && n !== void 0 && e.errno.includes(n) || e.messageIncludes !== void 0 && e.messageIncludes.some((e) => r.includes(e)));
2202
- }, ar = {
2202
+ }, or = {
2203
2203
  why: "mysql has no CREATE INDEX IF NOT EXISTS; 1061 is exactly that condition",
2204
2204
  errno: [1061]
2205
- }, or = {
2205
+ }, sr = {
2206
2206
  why: "mysql has no DROP COLUMN IF EXISTS; 1091 is exactly that condition",
2207
2207
  errno: [1091]
2208
- }, sr = {
2208
+ }, cr = {
2209
2209
  why: "sqlite has no DROP COLUMN IF EXISTS, and reports the absent column only in the message",
2210
2210
  messageIncludes: ["no such column"]
2211
- }, cr = {
2211
+ }, lr = {
2212
2212
  why: "mysql/mariadb DROP CONSTRAINT has no portable IF EXISTS; 1091 / 3940 are exactly \"already gone\"",
2213
2213
  errno: [1091, 3940]
2214
- }, W = (e, t) => e.onDialectOrElse({
2214
+ }, U = (e, t) => e.onDialectOrElse({
2215
2215
  mysql: () => x.succeed(t.replace("T", " ").replace("Z", "")),
2216
2216
  orElse: () => x.succeed(t)
2217
- }), lr = (e, t) => `${t}(${e.precision ?? 38}, ${e.scale ?? 0})`, ur = (e, t) => {
2218
- if ((e.type !== "text" || e.maxLength === void 0) && !e.spatial && e.type !== "vector" && e.type !== "array" && e.type !== "enum") return;
2217
+ }), ur = (e, t) => `${t}(${e.precision ?? 38}, ${e.scale ?? 0})`, dr = (e) => e.type === "text" && (e.hasDefault && e.defaultValue !== void 0 || e.oneOf !== void 0 && e.oneOf.length > 0), fr = (e, t) => {
2218
+ if ((e.type !== "text" || e.maxLength === void 0) && !dr(e) && !e.spatial && e.type !== "vector" && e.type !== "array" && e.type !== "enum") return;
2219
2219
  let n = e.type === "vector" && e.vectorDim === void 0 ? "vector dimension" : e.type === "array" && e.arrayElement === void 0 ? "array element type" : e.type === "enum" && e.enumName === void 0 && e.enumValues === void 0 ? "enum name/values" : void 0;
2220
2220
  if (n !== void 0) throw Error(`migration applier: cannot render '${e.name}' (${e.type}) — the schema snapshot carries no ${n}. Rendering it as 'text' would emit DDL that applies successfully and changes nothing, so this fails instead. This is a framework bug: declaredSchema.ts must carry the parameter into the ColumnSnapshot.`);
2221
2221
  return A(e, t);
2222
- }, dr = (e) => {
2223
- let t = ur(e, "postgres");
2224
- return t === void 0 ? fr(e) : t;
2225
- }, fr = (e) => {
2222
+ }, pr = (e) => {
2223
+ let t = fr(e, "postgres");
2224
+ return t === void 0 ? mr(e) : t;
2225
+ }, mr = (e) => {
2226
2226
  switch (e.type) {
2227
2227
  case "id": return "text";
2228
2228
  case "text": return "text";
2229
2229
  case "integer": return "integer";
2230
2230
  case "real": return "double precision";
2231
- case "decimal": return lr(e, "NUMERIC");
2231
+ case "decimal": return ur(e, "NUMERIC");
2232
2232
  case "bigint": return "bigint";
2233
2233
  case "boolean": return "boolean";
2234
2234
  case "timestamp": return "timestamptz";
@@ -2242,15 +2242,15 @@ BEGIN
2242
2242
  case "interval": return "interval";
2243
2243
  case "raw": return e.rawDdl ?? "text";
2244
2244
  }
2245
- }, pr = (e) => {
2246
- let t = ur(e, "mariadb");
2245
+ }, hr = (e) => {
2246
+ let t = fr(e, "mariadb");
2247
2247
  if (t !== void 0) return t;
2248
2248
  switch (e.type) {
2249
2249
  case "id": return "VARCHAR(64)";
2250
- case "text": return e.hasDefault && e.defaultValue !== void 0 || e.oneOf && e.oneOf.length > 0 ? "VARCHAR(255)" : "LONGTEXT";
2250
+ case "text": return "LONGTEXT";
2251
2251
  case "integer": return "INT";
2252
2252
  case "real": return "DOUBLE";
2253
- case "decimal": return lr(e, "DECIMAL");
2253
+ case "decimal": return ur(e, "DECIMAL");
2254
2254
  case "bigint": return "BIGINT";
2255
2255
  case "boolean": return "TINYINT(1)";
2256
2256
  case "timestamp": return "DATETIME(6)";
@@ -2264,58 +2264,64 @@ BEGIN
2264
2264
  case "interval": return "BIGINT";
2265
2265
  case "raw": return e.rawDdl ?? "LONGTEXT";
2266
2266
  }
2267
- }, G = (e) => `"${e}"`, K = (e) => `\`${e.replace(/`/g, "``")}\``, mr = (e) => e === "mariadb" ? "IF NOT EXISTS " : "", hr = (e, t, n = !0) => `ALTER TABLE ${t(e.table)} DROP COLUMN ${n ? "IF EXISTS " : ""}${t(e.column)};`, gr = (e, t = "mariadb") => `ALTER TABLE ${K(e.table)} DROP COLUMN ${t === "mariadb" ? "IF EXISTS " : ""}${K(e.column)}, ALGORITHM=COPY;`, _r = (e, t) => `ALTER TABLE ${t(e.table)} RENAME COLUMN ${t(e.from)} TO ${t(e.to)};`, vr = (e, t, n) => `ALTER TABLE ${n(e.table)} RENAME COLUMN ${n(e.column)} TO ${n(`${e.column}${Kr(t)}`)};`, yr = (e, t, n) => e.hasDefault && e.defaultValue !== void 0 ? `ALTER TABLE ${t(e.table)} ALTER COLUMN ${t(e.column)} SET ${br(e, n)};` : `ALTER TABLE ${t(e.table)} ALTER COLUMN ${t(e.column)} DROP DEFAULT;`, br = (e, t) => {
2267
+ }, W = (e) => `"${e}"`, G = (e) => `\`${e.replace(/`/g, "``")}\``, gr = (e) => e === "mariadb" ? "IF NOT EXISTS " : "", _r = (e, t, n = !0) => `ALTER TABLE ${t(e.table)} DROP COLUMN ${n ? "IF EXISTS " : ""}${t(e.column)};`, vr = (e, t = "mariadb") => `ALTER TABLE ${G(e.table)} DROP COLUMN ${t === "mariadb" ? "IF EXISTS " : ""}${G(e.column)}, ALGORITHM=COPY;`, yr = (e, t) => `ALTER TABLE ${t(e.table)} RENAME COLUMN ${t(e.from)} TO ${t(e.to)};`, br = (e, t, n) => `ALTER TABLE ${n(e.table)} RENAME COLUMN ${n(e.column)} TO ${n(`${e.column}${Jr(t)}`)};`, xr = (e, t, n) => e.hasDefault && e.defaultValue !== void 0 ? `ALTER TABLE ${t(e.table)} ALTER COLUMN ${t(e.column)} SET ${Cr(e, n)};` : `ALTER TABLE ${t(e.table)} ALTER COLUMN ${t(e.column)} DROP DEFAULT;`, Sr = (e, t) => {
2268
+ let { defaultFactory: n, ...r } = e;
2269
+ return A(e, t) !== A({
2270
+ ...r,
2271
+ hasDefault: !1
2272
+ }, t);
2273
+ }, Cr = (e, t) => {
2268
2274
  let n = t(e.defaultValue);
2269
2275
  if (n === null) throw Error(`migration applier: cannot render the declared default for '${e.table}.${e.column}' (${JSON.stringify(e.defaultValue)}). Emitting 'DEFAULT NULL' would apply cleanly and drop the default silently, so this fails instead. This is a framework bug — report the column type + default.`);
2270
2276
  return n;
2271
- }, q = (e, t, n) => e.find((e) => e.tableName === t)?.fields[n], xr = (e, t, n) => {
2272
- let r = q(e, t, n);
2273
- return r ? Gt(n, r) : void 0;
2274
- }, Sr = (e, t, n) => {
2277
+ }, K = (e, t, n) => e.find((e) => e.tableName === t)?.fields[n], wr = (e, t, n) => {
2278
+ let r = K(e, t, n);
2279
+ return r ? Kt(n, r) : void 0;
2280
+ }, Tr = (e, t, n) => {
2275
2281
  let r = n ?? e.nullable, i = $e(e, "mariadb");
2276
2282
  return [
2277
- K(t),
2283
+ G(t),
2278
2284
  A(e, "mariadb"),
2279
2285
  r ? null : "NOT NULL",
2280
2286
  i
2281
2287
  ].filter(Boolean).join(" ");
2282
- }, Cr = (e, t) => e == null ? null : Array.isArray(e) ? wr(e, t, "mariadb") : e === "now" ? "DEFAULT CURRENT_TIMESTAMP(6)" : typeof e == "boolean" ? `DEFAULT ${+!!e}` : typeof e == "number" ? `DEFAULT ${e}` : typeof e == "string" ? /[()]|^'/.test(e) ? `DEFAULT ${e}` : `DEFAULT '${e.replace(/'/g, "''")}'` : typeof e == "object" ? j(e, "mariadb") : null, wr = (e, t, n) => et(e, t ?? { type: "json" }, n), Tr = (e, t) => e == null ? null : Array.isArray(e) ? wr(e, t, "postgres") : e === "now" ? "DEFAULT now()" : typeof e == "boolean" || typeof e == "number" ? `DEFAULT ${e}` : typeof e == "string" ? /[()]|::|^'/.test(e) ? `DEFAULT ${e}` : `DEFAULT '${e.replace(/'/g, "''")}'` : typeof e == "object" ? j(e, "postgres") : null, Er = (e, t) => {
2288
+ }, Er = (e, t) => e == null ? null : Array.isArray(e) ? Dr(e, t, "mariadb") : e === "now" ? "DEFAULT CURRENT_TIMESTAMP(6)" : typeof e == "boolean" ? `DEFAULT ${+!!e}` : typeof e == "number" ? `DEFAULT ${e}` : typeof e == "string" ? /[()]|^'/.test(e) ? `DEFAULT ${e}` : `DEFAULT '${e.replace(/'/g, "''")}'` : typeof e == "object" ? j(e, "mariadb") : null, Dr = (e, t, n) => et(e, t ?? { type: "json" }, n), Or = (e, t) => e == null ? null : Array.isArray(e) ? Dr(e, t, "postgres") : e === "now" ? "DEFAULT now()" : typeof e == "boolean" || typeof e == "number" ? `DEFAULT ${e}` : typeof e == "string" ? /[()]|::|^'/.test(e) ? `DEFAULT ${e}` : `DEFAULT '${e.replace(/'/g, "''")}'` : typeof e == "object" ? j(e, "postgres") : null, q = (e, t) => {
2283
2289
  if (!e.generatedAs) return null;
2284
2290
  let { expr: n, stored: r } = e.generatedAs;
2285
2291
  return t === "postgres" ? `GENERATED ALWAYS AS (${n}) STORED` : t === "mssql" ? `AS (${n})${r ? " PERSISTED" : ""}` : `GENERATED ALWAYS AS (${n}) ${r ? "STORED" : "VIRTUAL"}`;
2286
- }, Dr = (e) => {
2292
+ }, kr = (e) => {
2287
2293
  if (e.type === "id" && e.idScheme?.kind === "numeric") return M(e.name, "postgres");
2288
- let t = Er(e, "postgres");
2289
- if (t) return `${G(e.name)} ${dr(e)} ${t}`;
2290
- let n = [G(e.name), dr(e)];
2294
+ let t = q(e, "postgres");
2295
+ if (t) return `${W(e.name)} ${pr(e)} ${t}`;
2296
+ let n = [W(e.name), pr(e)];
2291
2297
  if (e.type === "id" && n.push("PRIMARY KEY"), e.nullable || n.push("NOT NULL"), e.unique && e.type !== "id" && n.push("UNIQUE"), e.hasDefault) {
2292
- let t = Tr(e.defaultValue, e);
2298
+ let t = Or(e.defaultValue, e);
2293
2299
  t && n.push(t);
2294
2300
  }
2295
- return e.references && (n.push(`REFERENCES ${G(e.references.table)} (${G(e.references.column)})`), e.references.onDelete && n.push(`ON DELETE ${{
2301
+ return e.references && (n.push(`REFERENCES ${W(e.references.table)} (${W(e.references.column)})`), e.references.onDelete && n.push(`ON DELETE ${{
2296
2302
  cascade: "CASCADE",
2297
2303
  restrict: "RESTRICT",
2298
2304
  setNull: "SET NULL",
2299
2305
  noAction: "NO ACTION"
2300
2306
  }[e.references.onDelete]}`)), n.join(" ");
2301
- }, Or = (e, t) => e.primaryKey && e.primaryKey.length > 0 ? `,\n PRIMARY KEY (${e.primaryKey.map(t).join(", ")})` : "", kr = (e) => {
2302
- let t = e.columns.map((e) => ` ${Dr(e)}`).join(",\n"), n = [`CREATE TABLE IF NOT EXISTS ${G(e.table)} (\n${t}${Or(e, G)}\n)`];
2303
- for (let t of e.indexes) t.name !== `${e.table}_pkey` && n.push(`CREATE ${t.unique ? "UNIQUE " : ""}INDEX IF NOT EXISTS ${G(t.name)} ON ${G(e.table)} (${t.columns.map(Zr).join(", ")})`);
2307
+ }, Ar = (e, t) => e.primaryKey && e.primaryKey.length > 0 ? `,\n PRIMARY KEY (${e.primaryKey.map(t).join(", ")})` : "", jr = (e) => {
2308
+ let t = e.columns.map((e) => ` ${kr(e)}`).join(",\n"), n = [`CREATE TABLE IF NOT EXISTS ${W(e.table)} (\n${t}${Ar(e, W)}\n)`];
2309
+ for (let t of e.indexes) t.name !== `${e.table}_pkey` && n.push(`CREATE ${t.unique ? "UNIQUE " : ""}INDEX IF NOT EXISTS ${W(t.name)} ON ${W(e.table)} (${t.columns.map($r).join(", ")})`);
2304
2310
  return n;
2305
- }, Ar = 191, jr = (e) => {
2306
- let t = pr(e).toUpperCase();
2311
+ }, Mr = 191, Nr = (e) => {
2312
+ let t = hr(e).toUpperCase();
2307
2313
  return t.endsWith("TEXT") || t.endsWith("BLOB");
2308
- }, Mr = (e) => {
2314
+ }, Pr = (e) => {
2309
2315
  if (e.type === "id" && e.idScheme?.kind === "numeric") return M(e.name, "mariadb");
2310
- let t = Er(e, "mariadb");
2311
- if (t) return `${K(e.name)} ${pr(e)} ${t}`;
2312
- let n = [K(e.name), pr(e)];
2313
- if (e.type === "id" && n.push("PRIMARY KEY"), e.nullable || n.push("NOT NULL"), e.unique && e.type !== "id" && !jr(e) && n.push("UNIQUE"), e.hasDefault) {
2314
- let t = Cr(e.defaultValue, e);
2316
+ let t = q(e, "mariadb");
2317
+ if (t) return `${G(e.name)} ${hr(e)} ${t}`;
2318
+ let n = [G(e.name), hr(e)];
2319
+ if (e.type === "id" && n.push("PRIMARY KEY"), e.nullable || n.push("NOT NULL"), e.unique && e.type !== "id" && !Nr(e) && n.push("UNIQUE"), e.hasDefault) {
2320
+ let t = Er(e.defaultValue, e);
2315
2321
  t && n.push(t);
2316
2322
  }
2317
2323
  return n.join(" ");
2318
- }, Nr = (e) => e.columns.flatMap((t) => {
2324
+ }, Fr = (e) => e.columns.flatMap((t) => {
2319
2325
  if (!t.references) return [];
2320
2326
  let n = t.references.onDelete ? ` ON DELETE ${{
2321
2327
  cascade: "CASCADE",
@@ -2323,27 +2329,27 @@ BEGIN
2323
2329
  setNull: "SET NULL",
2324
2330
  noAction: "NO ACTION"
2325
2331
  }[t.references.onDelete]}` : "";
2326
- return [` CONSTRAINT ${K(`${e.table}_${t.name}_fkey`)} FOREIGN KEY (${K(t.name)}) REFERENCES ${K(t.references.table)} (${K(t.references.column)})${n}`];
2327
- }), Pr = (e, t = "mariadb") => {
2332
+ return [` CONSTRAINT ${G(`${e.table}_${t.name}_fkey`)} FOREIGN KEY (${G(t.name)}) REFERENCES ${G(t.references.table)} (${G(t.references.column)})${n}`];
2333
+ }), Ir = (e, t = "mariadb") => {
2328
2334
  let n = new Map(e.columns.map((e) => [e.name, e])), r = (e) => {
2329
- let t = Yr(n.get(e));
2330
- return t === void 0 ? K(e) : `${K(e)}(${t})`;
2331
- }, i = e.columns.map((e) => ` ${Mr(e)}`).join(",\n"), a = Nr(e), o = a.length > 0 ? `${i},\n${a.join(",\n")}` : i, s = [`CREATE TABLE IF NOT EXISTS ${K(e.table)} (\n${o}${Or(e, r)}\n)`];
2332
- for (let n of e.columns) n.unique && n.type !== "id" && jr(n) && s.push(`CREATE UNIQUE INDEX ${mr(t)}${K(`${e.table}_${n.name}_key`)} ON ${K(e.table)} (${r(n.name)})`);
2333
- for (let n of e.indexes) n.name !== `${e.table}_pkey` && s.push(`CREATE ${n.unique ? "UNIQUE " : ""}INDEX ${mr(t)}${K(n.name)} ON ${K(e.table)} (${n.columns.map(r).join(", ")})`);
2335
+ let t = Zr(n.get(e));
2336
+ return t === void 0 ? G(e) : `${G(e)}(${t})`;
2337
+ }, i = e.columns.map((e) => ` ${Pr(e)}`).join(",\n"), a = Fr(e), o = a.length > 0 ? `${i},\n${a.join(",\n")}` : i, s = [`CREATE TABLE IF NOT EXISTS ${G(e.table)} (\n${o}${Ar(e, r)}\n)`];
2338
+ for (let n of e.columns) n.unique && n.type !== "id" && Nr(n) && s.push(`CREATE UNIQUE INDEX ${gr(t)}${G(`${e.table}_${n.name}_key`)} ON ${G(e.table)} (${r(n.name)})`);
2339
+ for (let n of e.indexes) n.name !== `${e.table}_pkey` && s.push(`CREATE ${n.unique ? "UNIQUE " : ""}INDEX ${gr(t)}${G(n.name)} ON ${G(e.table)} (${n.columns.map(r).join(", ")})`);
2334
2340
  return s;
2335
- }, Fr = {
2341
+ }, Lr = {
2336
2342
  cascade: "CASCADE",
2337
2343
  restrict: "RESTRICT",
2338
2344
  setNull: "SET NULL",
2339
2345
  noAction: "NO ACTION"
2340
- }, Ir = {
2346
+ }, Rr = {
2341
2347
  cascade: "CASCADE",
2342
2348
  restrict: "NO ACTION",
2343
2349
  setNull: "SET NULL",
2344
2350
  noAction: "NO ACTION"
2345
- }, Lr = (e) => {
2346
- let t = ur(e, "sqlite");
2351
+ }, zr = (e) => {
2352
+ let t = fr(e, "sqlite");
2347
2353
  if (t !== void 0) return t;
2348
2354
  switch (e.type) {
2349
2355
  case "integer":
@@ -2354,60 +2360,60 @@ BEGIN
2354
2360
  case "bytes": return "BLOB";
2355
2361
  default: return "TEXT";
2356
2362
  }
2357
- }, Rr = (e, t) => e == null ? null : e === "now" ? `DEFAULT ${t}` : typeof e == "boolean" ? `DEFAULT ${+!!e}` : typeof e == "number" ? `DEFAULT ${e}` : typeof e == "string" ? /[()]|^'/.test(e) ? `DEFAULT ${e}` : `DEFAULT '${e.replace(/'/g, "''")}'` : typeof e == "object" ? j(e, "sqlite") : null, zr = (e) => {
2363
+ }, Br = (e, t) => e == null ? null : e === "now" ? `DEFAULT ${t}` : typeof e == "boolean" ? `DEFAULT ${+!!e}` : typeof e == "number" ? `DEFAULT ${e}` : typeof e == "string" ? /[()]|^'/.test(e) ? `DEFAULT ${e}` : `DEFAULT '${e.replace(/'/g, "''")}'` : typeof e == "object" ? j(e, "sqlite") : null, Vr = (e) => {
2358
2364
  if (e.type === "id" && e.idScheme?.kind === "numeric") return M(e.name, "sqlite");
2359
- let t = Er(e, "sqlite");
2360
- if (t) return `${G(e.name)} ${Lr(e)} ${t}`;
2361
- let n = [G(e.name), Lr(e)];
2365
+ let t = q(e, "sqlite");
2366
+ if (t) return `${W(e.name)} ${zr(e)} ${t}`;
2367
+ let n = [W(e.name), zr(e)];
2362
2368
  if (e.type === "id" && n.push("PRIMARY KEY"), e.nullable || n.push("NOT NULL"), e.unique && e.type !== "id" && n.push("UNIQUE"), e.hasDefault) {
2363
- let t = Rr(e.defaultValue, "CURRENT_TIMESTAMP");
2369
+ let t = Br(e.defaultValue, "CURRENT_TIMESTAMP");
2364
2370
  t && n.push(t);
2365
2371
  }
2366
- if (e.references && (n.push(`REFERENCES ${G(e.references.table)} (${G(e.references.column)})`), e.references.onDelete && n.push(`ON DELETE ${Fr[e.references.onDelete]}`)), e.oneOf && e.oneOf.length > 0) {
2372
+ if (e.references && (n.push(`REFERENCES ${W(e.references.table)} (${W(e.references.column)})`), e.references.onDelete && n.push(`ON DELETE ${Lr[e.references.onDelete]}`)), e.oneOf && e.oneOf.length > 0) {
2367
2373
  let t = e.oneOf.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ");
2368
- n.push(`CHECK (${G(e.name)} IN (${t}))`);
2374
+ n.push(`CHECK (${W(e.name)} IN (${t}))`);
2369
2375
  }
2370
2376
  return n.join(" ");
2371
- }, Br = (e) => {
2372
- let t = e.columns.map((e) => ` ${zr(e)}`).join(",\n"), n = [`CREATE TABLE IF NOT EXISTS ${G(e.table)} (\n${t}${Or(e, G)}\n)`];
2373
- for (let t of e.indexes) t.name !== `${e.table}_pkey` && n.push(`CREATE ${t.unique ? "UNIQUE " : ""}INDEX IF NOT EXISTS ${G(t.name)} ON ${G(e.table)} (${t.columns.map(G).join(", ")})`);
2377
+ }, Hr = (e) => {
2378
+ let t = e.columns.map((e) => ` ${Vr(e)}`).join(",\n"), n = [`CREATE TABLE IF NOT EXISTS ${W(e.table)} (\n${t}${Ar(e, W)}\n)`];
2379
+ for (let t of e.indexes) t.name !== `${e.table}_pkey` && n.push(`CREATE ${t.unique ? "UNIQUE " : ""}INDEX IF NOT EXISTS ${W(t.name)} ON ${W(e.table)} (${t.columns.map(W).join(", ")})`);
2374
2380
  return n;
2375
2381
  }, J = (e, t) => {
2376
2382
  let n = t.find((t) => t.tableName === e);
2377
2383
  if (!n) return [];
2378
- let r = I([n]).tables[0], i = `${e}__voltro_rebuild`, a = r.columns.map((e) => G(e.name)).join(", "), o = [
2379
- ...Br({
2384
+ let r = F([n]).tables[0], i = `${e}__voltro_rebuild`, a = r.columns.map((e) => W(e.name)).join(", "), o = [
2385
+ ...Hr({
2380
2386
  kind: "create-table",
2381
2387
  table: i,
2382
2388
  columns: r.columns,
2383
2389
  indexes: [],
2384
2390
  ...r.primaryKey ? { primaryKey: r.primaryKey } : {}
2385
2391
  }),
2386
- `INSERT INTO ${G(i)} (${a}) SELECT ${a} FROM ${G(e)}`,
2387
- `DROP TABLE ${G(e)}`,
2388
- `ALTER TABLE ${G(i)} RENAME TO ${G(e)}`
2392
+ `INSERT INTO ${W(i)} (${a}) SELECT ${a} FROM ${W(e)}`,
2393
+ `DROP TABLE ${W(e)}`,
2394
+ `ALTER TABLE ${W(i)} RENAME TO ${W(e)}`
2389
2395
  ];
2390
- for (let t of r.indexes) t.name !== `${e}_pkey` && o.push(`CREATE ${t.unique ? "UNIQUE " : ""}INDEX IF NOT EXISTS ${G(t.name)} ON ${G(e)} (${t.columns.map(G).join(", ")})`);
2396
+ for (let t of r.indexes) t.name !== `${e}_pkey` && o.push(`CREATE ${t.unique ? "UNIQUE " : ""}INDEX IF NOT EXISTS ${W(t.name)} ON ${W(e)} (${t.columns.map(W).join(", ")})`);
2391
2397
  return o;
2392
- }, Vr = (e, t, n, r) => {
2398
+ }, Ur = (e, t, n, r) => {
2393
2399
  let i = r ?? e.nullable;
2394
2400
  return `ALTER TABLE ${Y(n)} ALTER COLUMN ${Y(t)} ${A(e, "mssql")} ${i ? "NULL" : "NOT NULL"};`;
2395
- }, Hr = (e) => {
2396
- let t = `DECLARE @dc sysname; SELECT @dc = dc.name FROM sys.default_constraints dc JOIN sys.columns col ON col.object_id = dc.parent_object_id AND col.column_id = dc.parent_column_id WHERE dc.parent_object_id = OBJECT_ID(N'${e.table.replace(/'/g, "''")}') AND col.name = N'${e.column.replace(/'/g, "''")}'; IF @dc IS NOT NULL EXEC(N'ALTER TABLE ${Y(e.table)} DROP CONSTRAINT [' + @dc + ']');`;
2397
- if (!e.hasDefault) return t;
2398
- let n = Rr(e.defaultValue, "SYSUTCDATETIME()");
2399
- if (!n) return t;
2400
- let r = n.replace(/^DEFAULT\s+/i, "");
2401
- return `${t} ALTER TABLE ${Y(e.table)} ADD DEFAULT ${r} FOR ${Y(e.column)};`;
2402
- }, Y = (e) => `[${e.replace(/]/g, "]]")}]`, Ur = (e) => {
2403
- let t = ur(e, "mssql");
2401
+ }, Wr = (e, t) => {
2402
+ let n = `DECLARE @dc sysname; SELECT @dc = dc.name FROM sys.default_constraints dc JOIN sys.columns col ON col.object_id = dc.parent_object_id AND col.column_id = dc.parent_column_id WHERE dc.parent_object_id = OBJECT_ID(N'${e.table.replace(/'/g, "''")}') AND col.name = N'${e.column.replace(/'/g, "''")}'; IF @dc IS NOT NULL EXEC(N'ALTER TABLE ${Y(e.table)} DROP CONSTRAINT [' + @dc + ']');` + (t ? ` ${t}` : "");
2403
+ if (!e.hasDefault) return n;
2404
+ let r = Br(e.defaultValue, "SYSUTCDATETIME()");
2405
+ if (!r) return n;
2406
+ let i = r.replace(/^DEFAULT\s+/i, "");
2407
+ return `${n} ALTER TABLE ${Y(e.table)} ADD DEFAULT ${i} FOR ${Y(e.column)};`;
2408
+ }, Y = (e) => `[${e.replace(/]/g, "]]")}]`, Gr = (e) => {
2409
+ let t = fr(e, "mssql");
2404
2410
  if (t !== void 0) return t;
2405
2411
  switch (e.type) {
2406
2412
  case "id":
2407
2413
  case "reference": return "NVARCHAR(64)";
2408
2414
  case "integer": return "INT";
2409
2415
  case "real": return "FLOAT";
2410
- case "decimal": return lr(e, "DECIMAL");
2416
+ case "decimal": return ur(e, "DECIMAL");
2411
2417
  case "bigint": return "BIGINT";
2412
2418
  case "boolean": return "BIT";
2413
2419
  case "timestamp": return "DATETIME2(6)";
@@ -2415,44 +2421,44 @@ BEGIN
2415
2421
  case "bytes": return "VARBINARY(MAX)";
2416
2422
  default: return "NVARCHAR(MAX)";
2417
2423
  }
2418
- }, Wr = (e, t) => {
2424
+ }, Kr = (e, t) => {
2419
2425
  if (e.type === "id" && e.idScheme?.kind === "numeric") return M(e.name, "mssql");
2420
- let n = e.type === "text" && t?.has(e.name) ? "NVARCHAR(450)" : Ur(e), r = Er(e, "mssql");
2426
+ let n = e.type === "text" && t?.has(e.name) ? "NVARCHAR(450)" : Gr(e), r = q(e, "mssql");
2421
2427
  if (r) return `${Y(e.name)} ${r}`;
2422
2428
  let i = [Y(e.name), n];
2423
2429
  if (e.type === "id" && i.push("PRIMARY KEY"), e.nullable || i.push("NOT NULL"), e.unique && e.type !== "id" && i.push("UNIQUE"), e.hasDefault) {
2424
- let t = Rr(e.defaultValue, "SYSUTCDATETIME()");
2430
+ let t = Br(e.defaultValue, "SYSUTCDATETIME()");
2425
2431
  t && i.push(t);
2426
2432
  }
2427
- return e.references && (i.push(`REFERENCES ${Y(e.references.table)} (${Y(e.references.column)})`), e.references.onDelete && i.push(`ON DELETE ${Ir[e.references.onDelete]}`)), i.join(" ");
2428
- }, Gr = (e) => {
2429
- let t = (e) => e.replace(/'/g, "''"), n = new Set(e.indexes.flatMap((e) => e.columns)), r = e.columns.map((e) => ` ${Wr(e, n)}`).join(",\n"), i = `CREATE TABLE ${Y(e.table)} (\n${r}${Or(e, Y)}\n)`, a = [`IF OBJECT_ID(N'${t(e.table)}', N'U') IS NULL EXEC(N'${t(i)}')`];
2433
+ return e.references && (i.push(`REFERENCES ${Y(e.references.table)} (${Y(e.references.column)})`), e.references.onDelete && i.push(`ON DELETE ${Rr[e.references.onDelete]}`)), i.join(" ");
2434
+ }, qr = (e) => {
2435
+ let t = (e) => e.replace(/'/g, "''"), n = new Set(e.indexes.flatMap((e) => e.columns)), r = e.columns.map((e) => ` ${Kr(e, n)}`).join(",\n"), i = `CREATE TABLE ${Y(e.table)} (\n${r}${Ar(e, Y)}\n)`, a = [`IF OBJECT_ID(N'${t(e.table)}', N'U') IS NULL EXEC(N'${t(i)}')`];
2430
2436
  for (let n of e.indexes) {
2431
2437
  if (n.name === `${e.table}_pkey`) continue;
2432
2438
  let r = `CREATE ${n.unique ? "UNIQUE " : ""}INDEX ${Y(n.name)} ON ${Y(e.table)} (${n.columns.map(Y).join(", ")})`;
2433
2439
  a.push(`IF NOT EXISTS (SELECT 1 FROM sys.indexes WHERE name = N'${t(n.name)}' AND object_id = OBJECT_ID(N'${t(e.table)}')) EXEC(N'${t(r)}')`);
2434
2440
  }
2435
2441
  return a;
2436
- }, Kr = (e) => `__dropped_${e.replace(/[-:T.Z]/g, "").slice(0, 14)}`, qr = (e, t) => `DROP TABLE IF EXISTS ${t(e.table)};`, Jr = (e, t, n) => {
2437
- let r = `${e.table}${Kr(t)}`;
2442
+ }, Jr = (e) => `__dropped_${e.replace(/[-:T.Z]/g, "").slice(0, 14)}`, Yr = (e, t) => `DROP TABLE IF EXISTS ${t(e.table)};`, Xr = (e, t, n) => {
2443
+ let r = `${e.table}${Jr(t)}`;
2438
2444
  return `ALTER TABLE ${n(e.table)} RENAME TO ${n(r)};`;
2439
- }, Yr = (e) => {
2440
- if (e === void 0 || !jr(e)) return;
2445
+ }, Zr = (e) => {
2446
+ if (e === void 0 || !Nr(e)) return;
2441
2447
  let t = typeof e.maxLength == "number" && e.maxLength > 0 ? e.maxLength : void 0;
2442
- return t === void 0 ? Ar : Math.min(Ar, t);
2443
- }, Xr = (e, t, n) => {
2444
- let r = Yr(xr(e, t, n));
2445
- return r === void 0 ? K(n) : `${K(n)}(${r})`;
2446
- }, Zr = (e) => e.startsWith("(") ? e : G(e), Qr = (e, t) => `CREATE ${e.index.unique ? "UNIQUE " : ""}INDEX ${t ? "CONCURRENTLY " : ""}IF NOT EXISTS ${G(e.index.name)} ON ${G(e.table)} (${e.index.columns.map(Zr).join(", ")});`, $r = (e, t, n = "mariadb") => `CREATE ${e.index.unique ? "UNIQUE " : ""}INDEX ${mr(n)}${K(e.index.name)} ON ${K(e.table)} (${e.index.columns.map((n) => Xr(t, e.table, n)).join(", ")});`, ei = (e) => `DROP INDEX IF EXISTS ${G(e.index)};`, ti = (e) => `DROP INDEX ${K(e.index)} ON ${K(e.table)};`, ni = (e) => `DROP INDEX IF EXISTS ${Y(e.index)} ON ${Y(e.table)};`, ri = (e, t) => `ALTER TABLE ${t(e.from)} RENAME TO ${t(e.to)};`, ii = (e) => {
2448
+ return t === void 0 ? Mr : Math.min(Mr, t);
2449
+ }, Qr = (e, t, n) => {
2450
+ let r = Zr(wr(e, t, n));
2451
+ return r === void 0 ? G(n) : `${G(n)}(${r})`;
2452
+ }, $r = (e) => e.startsWith("(") ? e : W(e), ei = (e, t) => `CREATE ${e.index.unique ? "UNIQUE " : ""}INDEX ${t ? "CONCURRENTLY " : ""}IF NOT EXISTS ${W(e.index.name)} ON ${W(e.table)} (${e.index.columns.map($r).join(", ")});`, ti = (e, t, n = "mariadb") => `CREATE ${e.index.unique ? "UNIQUE " : ""}INDEX ${gr(n)}${G(e.index.name)} ON ${G(e.table)} (${e.index.columns.map((n) => Qr(t, e.table, n)).join(", ")});`, ni = (e) => `DROP INDEX IF EXISTS ${W(e.index)};`, ri = (e) => `DROP INDEX ${G(e.index)} ON ${G(e.table)};`, ii = (e) => `DROP INDEX IF EXISTS ${Y(e.index)} ON ${Y(e.table)};`, ai = (e, t) => `ALTER TABLE ${t(e.from)} RENAME TO ${t(e.to)};`, oi = (e) => {
2447
2453
  let t = (e) => e.replace(/'/g, "''");
2448
2454
  return `EXEC sp_rename N'${t(e.from)}', N'${t(e.to)}';`;
2449
- }, ai = (e) => `ALTER INDEX ${G(e.from)} RENAME TO ${G(e.to)};`, oi = (e) => `ALTER TABLE ${K(e.table)} RENAME INDEX ${K(e.from)} TO ${K(e.to)};`, si = (e) => {
2455
+ }, si = (e) => `ALTER INDEX ${W(e.from)} RENAME TO ${W(e.to)};`, ci = (e) => `ALTER TABLE ${G(e.table)} RENAME INDEX ${G(e.from)} TO ${G(e.to)};`, li = (e) => {
2450
2456
  let t = (e) => e.replace(/'/g, "''");
2451
2457
  return `EXEC sp_rename N'${t(e.table)}.${t(e.from)}', N'${t(e.to)}', N'INDEX';`;
2452
- }, ci = (e) => {
2458
+ }, ui = (e) => {
2453
2459
  let t = (e) => e.replace(/'/g, "''"), n = `CREATE ${e.index.unique ? "UNIQUE " : ""}INDEX ${Y(e.index.name)} ON ${Y(e.table)} (${e.index.columns.map(Y).join(", ")})`;
2454
2460
  return `IF NOT EXISTS (SELECT 1 FROM sys.indexes WHERE name = N'${t(e.index.name)}' AND object_id = OBJECT_ID(N'${t(e.table)}')) EXEC(N'${t(n)}');`;
2455
- }, li = (e, t, n) => {
2461
+ }, di = (e, t, n) => {
2456
2462
  let r = n.find((t) => t.tableName === e);
2457
2463
  if (!r) return [];
2458
2464
  let i = [];
@@ -2461,13 +2467,13 @@ BEGIN
2461
2467
  t && t.type === "text" && !t.generatedAs && i.push(`ALTER TABLE ${Y(e)} ALTER COLUMN ${Y(n)} NVARCHAR(450) ${t.nullable ? "NULL" : "NOT NULL"};`);
2462
2468
  }
2463
2469
  return i;
2464
- }, ui = (e) => `ALTER TABLE ${G(e.table)} ADD CONSTRAINT ${G(`${e.table}_${e.column}_key`)} UNIQUE (${G(e.column)});`, di = (e, t) => `ALTER TABLE ${K(e.table)} ADD CONSTRAINT ${K(`${e.table}_${e.column}_key`)} UNIQUE (${Xr(t, e.table, e.column)});`, fi = (e) => {
2465
- let t = e.fields.map((e) => G(e)).join(", ");
2466
- return `ALTER TABLE ${G(e.table)} ADD CONSTRAINT ${G(e.name)} UNIQUE (${t});`;
2467
- }, pi = (e, t) => {
2468
- let n = e.fields.map((n) => Xr(t, e.table, n)).join(", ");
2469
- return `ALTER TABLE ${K(e.table)} ADD CONSTRAINT ${K(e.name)} UNIQUE (${n});`;
2470
- }, mi = (e) => `ALTER TABLE ${G(e.table)} DROP CONSTRAINT IF EXISTS ${G(e.name)};`, hi = (e) => `ALTER TABLE ${K(e.table)} DROP INDEX ${K(e.name)};`, gi = (e) => `ALTER TABLE ${G(e.table)} DROP CONSTRAINT IF EXISTS ${G(`${e.table}_${e.column}_key`)};`, _i = (e) => `ALTER TABLE ${K(e.table)} DROP INDEX ${K(`${e.table}_${e.column}_key`)};`, vi = (e, t) => {
2470
+ }, fi = (e) => `ALTER TABLE ${W(e.table)} ADD CONSTRAINT ${W(`${e.table}_${e.column}_key`)} UNIQUE (${W(e.column)});`, pi = (e, t) => `ALTER TABLE ${G(e.table)} ADD CONSTRAINT ${G(`${e.table}_${e.column}_key`)} UNIQUE (${Qr(t, e.table, e.column)});`, mi = (e) => {
2471
+ let t = e.fields.map((e) => W(e)).join(", ");
2472
+ return `ALTER TABLE ${W(e.table)} ADD CONSTRAINT ${W(e.name)} UNIQUE (${t});`;
2473
+ }, hi = (e, t) => {
2474
+ let n = e.fields.map((n) => Qr(t, e.table, n)).join(", ");
2475
+ return `ALTER TABLE ${G(e.table)} ADD CONSTRAINT ${G(e.name)} UNIQUE (${n});`;
2476
+ }, gi = (e) => `ALTER TABLE ${W(e.table)} DROP CONSTRAINT IF EXISTS ${W(e.name)};`, _i = (e) => `ALTER TABLE ${G(e.table)} DROP INDEX ${G(e.name)};`, vi = (e) => `ALTER TABLE ${W(e.table)} DROP CONSTRAINT IF EXISTS ${W(`${e.table}_${e.column}_key`)};`, yi = (e) => `ALTER TABLE ${G(e.table)} DROP INDEX ${G(`${e.table}_${e.column}_key`)};`, bi = (e, t) => {
2471
2477
  let n = [], r = t(e.table), i = t(e.column), a = t(e.targetTable), o = t(e.targetColumn);
2472
2478
  if (e.orphanPolicy) {
2473
2479
  let t = `${i} IS NOT NULL AND ${i} NOT IN (SELECT ${o} FROM ${a})`;
@@ -2485,10 +2491,10 @@ BEGIN
2485
2491
  setNull: "SET NULL",
2486
2492
  noAction: "NO ACTION"
2487
2493
  }[e.onDelete]}`), n.push(s.join(" ") + ";"), n;
2488
- }, yi = (e) => `ALTER TABLE ${G(e.table)} DROP CONSTRAINT IF EXISTS ${G(`${e.table}_${e.column}_fkey`)};`, bi = (e) => `ALTER TABLE ${K(e.table)} DROP FOREIGN KEY ${K(`${e.table}_${e.column}_fkey`)};`, xi = (e, t) => {
2494
+ }, xi = (e) => `ALTER TABLE ${W(e.table)} DROP CONSTRAINT IF EXISTS ${W(`${e.table}_${e.column}_fkey`)};`, Si = (e) => `ALTER TABLE ${G(e.table)} DROP FOREIGN KEY ${G(`${e.table}_${e.column}_fkey`)};`, Ci = (e, t) => {
2489
2495
  let n = e.values.map((e) => `'${e.replace(/'/g, "''")}'`).join(", ");
2490
2496
  return `ALTER TABLE ${t(e.table)} ADD CONSTRAINT ${t(`${e.table}_${e.column}_check`)} CHECK (${t(e.column)} IN (${n}));`;
2491
- }, Si = (e) => `ALTER TABLE ${G(e.table)} DROP CONSTRAINT IF EXISTS ${G(`${e.table}_${e.column}_check`)};`, Ci = (e, t) => x.gen(function* () {
2497
+ }, wi = (e) => `ALTER TABLE ${W(e.table)} DROP CONSTRAINT IF EXISTS ${W(`${e.table}_${e.column}_check`)};`, Ti = (e, t) => x.gen(function* () {
2492
2498
  let n = yield* e`
2493
2499
  SELECT cc.constraint_name AS n, cc.check_clause AS c
2494
2500
  FROM information_schema.check_constraints cc
@@ -2501,18 +2507,18 @@ BEGIN
2501
2507
  WHERE tc.table_schema = DATABASE() AND tc.table_name = ${t.table}`), x.orElseSucceed(() => []));
2502
2508
  for (let e of n) {
2503
2509
  let n = String(e.n ?? "");
2504
- if (n !== "" && Nn(String(e.c ?? ""))?.column === t.column) return n;
2510
+ if (n !== "" && Pn(String(e.c ?? ""))?.column === t.column) return n;
2505
2511
  }
2506
- }), wi = (e, t, n) => x.gen(function* () {
2507
- let r = yield* Ci(e, t);
2508
- r !== void 0 && (yield* X(e, `ALTER TABLE ${K(t.table)} DROP CONSTRAINT ${K(r)};`, t.kind, [cr]));
2509
- let i = yield* Ci(e, t);
2512
+ }), Ei = (e, t, n) => x.gen(function* () {
2513
+ let r = yield* Ti(e, t);
2514
+ r !== void 0 && (yield* X(e, `ALTER TABLE ${G(t.table)} DROP CONSTRAINT ${G(r)};`, t.kind, [lr]));
2515
+ let i = yield* Ti(e, t);
2510
2516
  if (i === void 0) return;
2511
- let a = q(n, t.table, t.column);
2517
+ let a = K(n, t.table, t.column);
2512
2518
  if (!a) return yield* x.die(/* @__PURE__ */ Error(`applier: cannot drop the CHECK on '${t.table}.${t.column}' — it is column-level (catalog name '${i}'), which this family removes only by redefining the column, and the declared column is not available to redefine it from.`));
2513
- yield* X(e, `ALTER TABLE ${K(t.table)} MODIFY COLUMN ${Sr(a, t.column)};`, t.kind);
2514
- }), Ti = (e, t, n, r) => {
2515
- let i = e.column, a = r === "mariadb", o = a ? K : r === "mssql" ? Y : G, s = a ? pr(i) : r === "mssql" ? Ur(i) : r === "sqlite" ? Lr(i) : dr(i), c = r === "mssql" ? "ADD" : "ADD COLUMN", l = (e) => a ? Cr(e, i) : r === "mssql" ? Rr(e, "SYSUTCDATETIME()") : r === "sqlite" ? Rr(e, "CURRENT_TIMESTAMP") : Tr(e, i), u = Er(i, r);
2519
+ yield* X(e, `ALTER TABLE ${G(t.table)} MODIFY COLUMN ${Tr(a, t.column)};`, t.kind);
2520
+ }), Di = (e, t, n, r) => {
2521
+ let i = e.column, a = r === "mariadb", o = a ? G : r === "mssql" ? Y : W, s = a ? hr(i) : r === "mssql" ? Gr(i) : r === "sqlite" ? zr(i) : pr(i), c = r === "mssql" ? "ADD" : "ADD COLUMN", l = (e) => a ? Er(e, i) : r === "mssql" ? Br(e, "SYSUTCDATETIME()") : r === "sqlite" ? Br(e, "CURRENT_TIMESTAMP") : Or(e, i), u = q(i, r);
2516
2522
  if (u) {
2517
2523
  let t = r === "mssql" ? `${o(i.name)} ${u}` : `${o(i.name)} ${s} ${u}`;
2518
2524
  return {
@@ -2540,7 +2546,7 @@ BEGIN
2540
2546
  post: f ? [f] : []
2541
2547
  };
2542
2548
  return d?.sql && (p.backfillKind = "sql", p.backfillSql = d.sql), d?.js && (p.backfillKind = "js", p.backfillJs = d.js), d?.batchSize !== void 0 && (p.batchSize = d.batchSize), d?.sleepMs !== void 0 && (p.sleepMs = d.sleepMs), p;
2543
- }, Ei = (e) => {
2549
+ }, Oi = (e) => {
2544
2550
  let t = new Map(e.map((e) => [e.tableName, e]));
2545
2551
  return (e, n) => {
2546
2552
  let r = t.get(e);
@@ -2560,13 +2566,13 @@ BEGIN
2560
2566
  ...o
2561
2567
  };
2562
2568
  };
2563
- }, X = (e, t, n, r = []) => e.unsafe(t).pipe(x.catchIf((e) => ir(e, r), () => x.void), x.tapError((e) => x.sync(() => {
2569
+ }, X = (e, t, n, r = []) => e.unsafe(t).pipe(x.catchIf((e) => ar(e, r), () => x.void), x.tapError((e) => x.sync(() => {
2564
2570
  process.stderr.write(ae(`applier: statement failed (op=${n})`, t, e, 400));
2565
2571
  })), x.mapError((e) => {
2566
2572
  let r = ae(`applier: statement failed (op=${n})`, t, e, 400).trim();
2567
2573
  return Object.assign(e, { message: r });
2568
- }), x.map(() => void 0)), Z = (e, t, n) => x.forEach(t, (t) => X(e, t, n), { discard: !0 }), Q = (e, t) => e.literal(`LIMIT ${Math.max(1, Math.floor(Number.isFinite(t) ? t : 1))}`), $ = (t, n, r, i) => t.unsafe(`SELECT ${i === void 0 ? "*" : e(i, n)} FROM ${e(r, n)} WHERE 1=0`).pipe(x.as(!0), x.catchAll(() => x.succeed(!1))), Di = (e, t) => x.gen(function* () {
2569
- let n = I([Le], t).tables[0];
2574
+ }), x.map(() => void 0)), Z = (e, t, n) => x.forEach(t, (t) => X(e, t, n), { discard: !0 }), Q = (e, t) => e.literal(`LIMIT ${Math.max(1, Math.floor(Number.isFinite(t) ? t : 1))}`), $ = (t, n, r, i) => t.unsafe(`SELECT ${i === void 0 ? "*" : e(i, n)} FROM ${e(r, n)} WHERE 1=0`).pipe(x.as(!0), x.catchAll(() => x.succeed(!1))), ki = (e, t) => x.gen(function* () {
2575
+ let n = F([Le], t).tables[0];
2570
2576
  if (!n) return yield* x.die(/* @__PURE__ */ Error("migration applier: the resume-ledger table descriptor produced no snapshot. This is a framework bug."));
2571
2577
  let r = {
2572
2578
  kind: "create-table",
@@ -2574,18 +2580,18 @@ BEGIN
2574
2580
  columns: n.columns,
2575
2581
  indexes: []
2576
2582
  }, i = yield* e.onDialectOrElse({
2577
- mysql: () => U(e).pipe(x.map((e) => Pr(r, e))),
2578
- mssql: () => x.succeed(Gr(r)),
2579
- sqlite: () => x.succeed(Br(r)),
2580
- orElse: () => x.succeed(kr(r))
2583
+ mysql: () => H(e).pipe(x.map((e) => Ir(r, e))),
2584
+ mssql: () => x.succeed(qr(r)),
2585
+ sqlite: () => x.succeed(Hr(r)),
2586
+ orElse: () => x.succeed(jr(r))
2581
2587
  });
2582
2588
  yield* x.forEach(i, (t) => X(e, t, "resume-ledger-bootstrap"), { discard: !0 });
2583
- }), Oi = (e) => e`
2589
+ }), Ai = (e) => e`
2584
2590
  SELECT ${e("runId")}, ${e("planFingerprint")}, ${e("opIndex")},
2585
2591
  ${e("status")}, ${e("payload")}
2586
2592
  FROM ${e(D)}
2587
- `, ki = (e, t, n, r) => x.gen(function* () {
2588
- let i = yield* W(e, (/* @__PURE__ */ new Date()).toISOString());
2593
+ `, ji = (e, t, n, r) => x.gen(function* () {
2594
+ let i = yield* U(e, (/* @__PURE__ */ new Date()).toISOString());
2589
2595
  yield* x.forEach(r, ({ index: r, planned: a }) => e`
2590
2596
  INSERT INTO ${e(D)}
2591
2597
  (${e("id")}, ${e("runId")}, ${e("planFingerprint")}, ${e("opIndex")},
@@ -2596,8 +2602,8 @@ BEGIN
2596
2602
  ${a.op.kind}, ${ze(a.op)}, ${"pending"},
2597
2603
  ${JSON.stringify(a)}, ${i})
2598
2604
  `, { discard: !0 });
2599
- }), Ai = (e, t, n, r, i) => x.gen(function* () {
2600
- let a = yield* W(e, (/* @__PURE__ */ new Date()).toISOString());
2605
+ }), Mi = (e, t, n, r, i) => x.gen(function* () {
2606
+ let a = yield* U(e, (/* @__PURE__ */ new Date()).toISOString());
2601
2607
  if (r === "applied") {
2602
2608
  yield* e`
2603
2609
  UPDATE ${e(D)}
@@ -2612,8 +2618,8 @@ BEGIN
2612
2618
  SET ${e("status")} = ${r}, ${e("startedAt")} = ${a}
2613
2619
  WHERE ${e("runId")} = ${t} AND ${e("opIndex")} = ${n}
2614
2620
  `;
2615
- }), ji = (e, t, n, r) => x.gen(function* () {
2616
- let i = yield* W(e, (/* @__PURE__ */ new Date()).toISOString());
2621
+ }), Ni = (e, t, n, r) => x.gen(function* () {
2622
+ let i = yield* U(e, (/* @__PURE__ */ new Date()).toISOString());
2617
2623
  r.length > 0 && (yield* e`
2618
2624
  UPDATE ${e(D)}
2619
2625
  SET ${e("status")} = ${"applied"}, ${e("appliedAt")} = ${i}
@@ -2623,7 +2629,7 @@ BEGIN
2623
2629
  SET ${e("status")} = ${"pending"}
2624
2630
  WHERE ${e("runId")} = ${t} AND ${e("opIndex")} IN ${e.in(n)}
2625
2631
  `);
2626
- }), Mi = (e, t) => t === void 0 ? e`DELETE FROM ${e(D)}`.pipe(x.asVoid) : e`DELETE FROM ${e(D)} WHERE ${e("runId")} = ${t}`.pipe(x.asVoid), Ni = (t, n, r) => x.gen(function* () {
2632
+ }), Pi = (e, t) => t === void 0 ? e`DELETE FROM ${e(D)}`.pipe(x.asVoid) : e`DELETE FROM ${e(D)} WHERE ${e("runId")} = ${t}`.pipe(x.asVoid), Fi = (t, n, r) => x.gen(function* () {
2627
2633
  if (qe(r.op, r.classification, n) !== "artefact-repair") return "clean";
2628
2634
  let i = r.op, a = (t) => e(t, n);
2629
2635
  if (n === "sqlite" || n === "turso") {
@@ -2634,113 +2640,113 @@ BEGIN
2634
2640
  if (i.kind !== "alter-column-type") return "clean";
2635
2641
  let o = `${i.column}${Ue}`, s = `${i.column}${We}`, c = yield* $(t, n, i.table, i.column), l = yield* $(t, n, i.table, o), u = yield* $(t, n, i.table, s), d = (e) => x.logWarning(`migration resume: ${e}`).pipe(x.annotateLogs({ scope: "voltro:migrate" }));
2636
2642
  return !l && !u ? "clean" : c && l && !u ? (yield* X(t, `ALTER TABLE ${a(i.table)} DROP COLUMN ${a(o)}`, "resume-repair"), yield* d(`dropped a half-populated shadow column '${i.table}.${o}' — replaying the type change`), "outstanding") : !c && l && u ? (yield* X(t, `ALTER TABLE ${a(i.table)} RENAME COLUMN ${a(o)} TO ${a(i.column)}`, "resume-repair"), yield* X(t, `ALTER TABLE ${a(i.table)} DROP COLUMN ${a(s)}`, "resume-repair"), yield* d(`completed an interrupted shadow swap on '${i.table}.${i.column}'`), "applied") : c && !l && u ? (yield* X(t, `ALTER TABLE ${a(i.table)} DROP COLUMN ${a(s)}`, "resume-repair"), yield* d(`dropped the leftover pre-swap column '${i.table}.${s}'`), "applied") : yield* x.die(/* @__PURE__ */ Error(`applyPlan: an interrupted online type change on '${i.table}.${i.column}' left a shadow-swap state this resume cannot classify (column=${c}, ${o}=${l}, ${s}=${u}).\nNothing was changed. Inspect those three columns and reconcile them by hand — the data is in whichever of them is populated — then re-run the migration.`));
2637
- }), Pi = (e, t, n, r = "fresh") => x.gen(function* () {
2638
- let i = process.hrtime.bigint(), a = Ei(n.declared), o = t.op;
2643
+ }), Ii = (e, t, n, r = "fresh") => x.gen(function* () {
2644
+ let i = process.hrtime.bigint(), a = Oi(n.declared), o = t.op;
2639
2645
  switch (o.kind) {
2640
2646
  case "create-table": {
2641
2647
  let t = yield* e.onDialectOrElse({
2642
- mysql: () => U(e).pipe(x.map((e) => Pr(o, e))),
2643
- mssql: () => x.succeed(Gr(o)),
2644
- sqlite: () => x.succeed(Br(o)),
2645
- orElse: () => x.succeed(kr(o))
2648
+ mysql: () => H(e).pipe(x.map((e) => Ir(o, e))),
2649
+ mssql: () => x.succeed(qr(o)),
2650
+ sqlite: () => x.succeed(Hr(o)),
2651
+ orElse: () => x.succeed(jr(o))
2646
2652
  }), n = yield* e.onDialectOrElse({
2647
- mysql: () => x.succeed([ar]),
2653
+ mysql: () => x.succeed([or]),
2648
2654
  orElse: () => x.succeed([])
2649
2655
  });
2650
2656
  for (let r of t) yield* X(e, r, o.kind, n);
2651
2657
  break;
2652
2658
  }
2653
2659
  case "drop-table": {
2654
- let t = process.env.VOLTRO_SOFT_DROP === "1", n = (/* @__PURE__ */ new Date()).toISOString(), r = (e) => t ? Jr(o, n, e) : qr(o, e);
2660
+ let t = process.env.VOLTRO_SOFT_DROP === "1", n = (/* @__PURE__ */ new Date()).toISOString(), r = (e) => t ? Xr(o, n, e) : Yr(o, e);
2655
2661
  yield* e.onDialectOrElse({
2656
- mysql: () => X(e, r(K), o.kind),
2657
- orElse: () => X(e, r(G), o.kind)
2662
+ mysql: () => X(e, r(G), o.kind),
2663
+ orElse: () => X(e, r(W), o.kind)
2658
2664
  });
2659
2665
  break;
2660
2666
  }
2661
2667
  case "drop-column": {
2662
2668
  let t = process.env.VOLTRO_SOFT_DROP === "1", n = (/* @__PURE__ */ new Date()).toISOString();
2663
2669
  yield* e.onDialectOrElse({
2664
- mysql: () => U(e).pipe(x.flatMap((r) => X(e, t ? vr(o, n, K) : gr(o, r), o.kind, t ? [] : [or]))),
2665
- sqlite: () => X(e, t ? vr(o, n, G) : hr(o, G, !1), o.kind, t ? [] : [sr]),
2666
- orElse: () => X(e, t ? vr(o, n, G) : hr(o, G), o.kind)
2670
+ mysql: () => H(e).pipe(x.flatMap((r) => X(e, t ? br(o, n, G) : vr(o, r), o.kind, t ? [] : [sr]))),
2671
+ sqlite: () => X(e, t ? br(o, n, W) : _r(o, W, !1), o.kind, t ? [] : [cr]),
2672
+ orElse: () => X(e, t ? br(o, n, W) : _r(o, W), o.kind)
2667
2673
  });
2668
2674
  break;
2669
2675
  }
2670
2676
  case "rename-column":
2671
2677
  yield* e.onDialectOrElse({
2672
- mysql: () => X(e, _r(o, K), o.kind),
2678
+ mysql: () => X(e, yr(o, G), o.kind),
2673
2679
  mssql: () => X(e, `EXEC sp_rename N'${o.table.replace(/'/g, "''")}.${o.from.replace(/'/g, "''")}', N'${o.to.replace(/'/g, "''")}', 'COLUMN';`, o.kind),
2674
- orElse: () => X(e, _r(o, G), o.kind)
2680
+ orElse: () => X(e, yr(o, W), o.kind)
2675
2681
  });
2676
2682
  break;
2677
2683
  case "add-index":
2678
2684
  yield* e.onDialectOrElse({
2679
- mysql: () => U(e).pipe(x.flatMap((t) => X(e, $r(o, n.declared, t), o.kind, [ar]))),
2680
- mssql: () => Z(e, [...li(o.table, o.index.columns, n.declared), ci(o)], o.kind),
2681
- orElse: () => X(e, Qr(o, t.classification === "online-required"), o.kind)
2685
+ mysql: () => H(e).pipe(x.flatMap((t) => X(e, ti(o, n.declared, t), o.kind, [or]))),
2686
+ mssql: () => Z(e, [...di(o.table, o.index.columns, n.declared), ui(o)], o.kind),
2687
+ orElse: () => X(e, ei(o, t.classification === "online-required"), o.kind)
2682
2688
  });
2683
2689
  break;
2684
2690
  case "drop-index":
2685
2691
  yield* e.onDialectOrElse({
2686
- mysql: () => X(e, ti(o), o.kind),
2687
- mssql: () => X(e, ni(o), o.kind),
2688
- orElse: () => X(e, ei(o), o.kind)
2692
+ mysql: () => X(e, ri(o), o.kind),
2693
+ mssql: () => X(e, ii(o), o.kind),
2694
+ orElse: () => X(e, ni(o), o.kind)
2689
2695
  });
2690
2696
  break;
2691
2697
  case "rename-table":
2692
2698
  yield* e.onDialectOrElse({
2693
- mysql: () => X(e, ri(o, K), o.kind),
2694
- mssql: () => X(e, ii(o), o.kind),
2695
- orElse: () => X(e, ri(o, G), o.kind)
2699
+ mysql: () => X(e, ai(o, G), o.kind),
2700
+ mssql: () => X(e, oi(o), o.kind),
2701
+ orElse: () => X(e, ai(o, W), o.kind)
2696
2702
  });
2697
2703
  break;
2698
2704
  case "rename-index":
2699
2705
  yield* e.onDialectOrElse({
2700
- mysql: () => X(e, oi(o), o.kind),
2701
- mssql: () => X(e, si(o), o.kind),
2702
- orElse: () => X(e, ai(o), o.kind)
2706
+ mysql: () => X(e, ci(o), o.kind),
2707
+ mssql: () => X(e, li(o), o.kind),
2708
+ orElse: () => X(e, si(o), o.kind)
2703
2709
  });
2704
2710
  break;
2705
2711
  case "add-unique":
2706
2712
  yield* e.onDialectOrElse({
2707
- mysql: () => X(e, di(o, n.declared), o.kind),
2713
+ mysql: () => X(e, pi(o, n.declared), o.kind),
2708
2714
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2709
- mssql: () => Z(e, [...li(o.table, [o.column], n.declared), ui(o)], o.kind),
2710
- orElse: () => X(e, ui(o), o.kind)
2715
+ mssql: () => Z(e, [...di(o.table, [o.column], n.declared), fi(o)], o.kind),
2716
+ orElse: () => X(e, fi(o), o.kind)
2711
2717
  });
2712
2718
  break;
2713
2719
  case "drop-unique":
2714
2720
  yield* e.onDialectOrElse({
2715
- mysql: () => X(e, _i(o), o.kind),
2721
+ mysql: () => X(e, yi(o), o.kind),
2716
2722
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2717
- orElse: () => X(e, gi(o), o.kind)
2723
+ orElse: () => X(e, vi(o), o.kind)
2718
2724
  });
2719
2725
  break;
2720
2726
  case "add-unique-composite":
2721
2727
  yield* e.onDialectOrElse({
2722
- mysql: () => X(e, pi(o, n.declared), o.kind),
2728
+ mysql: () => X(e, hi(o, n.declared), o.kind),
2723
2729
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2724
- mssql: () => Z(e, [...li(o.table, o.fields, n.declared), fi(o)], o.kind),
2725
- orElse: () => X(e, fi(o), o.kind)
2730
+ mssql: () => Z(e, [...di(o.table, o.fields, n.declared), mi(o)], o.kind),
2731
+ orElse: () => X(e, mi(o), o.kind)
2726
2732
  });
2727
2733
  break;
2728
2734
  case "drop-unique-composite":
2729
2735
  yield* e.onDialectOrElse({
2730
- mysql: () => X(e, hi(o), o.kind),
2736
+ mysql: () => X(e, _i(o), o.kind),
2731
2737
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2732
- orElse: () => X(e, mi(o), o.kind)
2738
+ orElse: () => X(e, gi(o), o.kind)
2733
2739
  });
2734
2740
  break;
2735
2741
  case "add-foreign-key":
2736
2742
  yield* e.onDialectOrElse({
2737
- mysql: () => Z(e, vi(o, K), o.kind),
2743
+ mysql: () => Z(e, bi(o, G), o.kind),
2738
2744
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2739
- orElse: () => Z(e, vi(o, G), o.kind)
2745
+ orElse: () => Z(e, bi(o, W), o.kind)
2740
2746
  });
2741
2747
  break;
2742
2748
  case "add-column": {
2743
- let n = Ti(o, t, a, yield* e.onDialectOrElse({
2749
+ let n = Di(o, t, a, yield* e.onDialectOrElse({
2744
2750
  mysql: () => x.succeed("mariadb"),
2745
2751
  mssql: () => x.succeed("mssql"),
2746
2752
  sqlite: () => x.succeed("sqlite"),
@@ -2786,41 +2792,47 @@ BEGIN
2786
2792
  case "alter-column-nullability":
2787
2793
  yield* e.onDialectOrElse({
2788
2794
  mysql: () => {
2789
- let t = q(n.declared, o.table, o.column);
2790
- return t ? X(e, `ALTER TABLE ${K(o.table)} MODIFY COLUMN ${Sr(t, o.column, o.toNullable)};`, o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-nullability on mariadb needs the declared column '${o.table}.${o.column}' (to render MODIFY COLUMN); it was not in ctx.declared.`));
2795
+ let t = K(n.declared, o.table, o.column);
2796
+ return t ? X(e, `ALTER TABLE ${G(o.table)} MODIFY COLUMN ${Tr(t, o.column, o.toNullable)};`, o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-nullability on mariadb needs the declared column '${o.table}.${o.column}' (to render MODIFY COLUMN); it was not in ctx.declared.`));
2791
2797
  },
2792
2798
  mssql: () => {
2793
- let t = q(n.declared, o.table, o.column);
2794
- return t ? X(e, Vr(t, o.column, o.table, o.toNullable), o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-nullability on mssql needs the declared column '${o.table}.${o.column}'.`));
2799
+ let t = K(n.declared, o.table, o.column);
2800
+ return t ? X(e, Ur(t, o.column, o.table, o.toNullable), o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-nullability on mssql needs the declared column '${o.table}.${o.column}'.`));
2795
2801
  },
2796
2802
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2797
- orElse: () => X(e, `ALTER TABLE ${G(o.table)} ALTER COLUMN ${G(o.column)} ${o.toNullable ? "DROP NOT NULL" : "SET NOT NULL"};`, o.kind)
2803
+ orElse: () => X(e, `ALTER TABLE ${W(o.table)} ALTER COLUMN ${W(o.column)} ${o.toNullable ? "DROP NOT NULL" : "SET NOT NULL"};`, o.kind)
2798
2804
  });
2799
2805
  break;
2800
2806
  case "alter-column-default": {
2801
- let t = xr(n.declared, o.table, o.column);
2807
+ let t = wr(n.declared, o.table, o.column), r = K(n.declared, o.table, o.column), i = (e) => o.hasDefault && r !== void 0 && Sr(r, e) ? r : void 0;
2802
2808
  yield* e.onDialectOrElse({
2803
- mysql: () => X(e, yr(o, K, (e) => Cr(e, t)), o.kind),
2804
- mssql: () => X(e, Hr(o), o.kind),
2809
+ mysql: () => {
2810
+ let n = i("mariadb");
2811
+ return X(e, n ? `ALTER TABLE ${G(o.table)} MODIFY COLUMN ${Tr(n, o.column)};` : xr(o, G, (e) => Er(e, t)), o.kind);
2812
+ },
2813
+ mssql: () => {
2814
+ let t = i("mssql");
2815
+ return X(e, Wr(o, t ? Ur(t, o.column, o.table) : void 0), o.kind);
2816
+ },
2805
2817
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2806
- orElse: () => X(e, yr(o, G, (e) => Tr(e, t)), o.kind)
2818
+ orElse: () => X(e, xr(o, W, (e) => Or(e, t)), o.kind)
2807
2819
  });
2808
2820
  break;
2809
2821
  }
2810
2822
  case "alter-column-type": {
2811
- let r = dr(xr(n.declared, o.table, o.column) ?? { type: o.to }), i = o.using ? ` USING ${o.using}` : "";
2823
+ let r = pr(wr(n.declared, o.table, o.column) ?? { type: o.to }), i = o.using ? ` USING ${o.using}` : "";
2812
2824
  if (t.classification !== "online-required") {
2813
2825
  yield* e.onDialectOrElse({
2814
2826
  mysql: () => {
2815
- let t = q(n.declared, o.table, o.column);
2816
- return t ? X(e, `ALTER TABLE ${K(o.table)} MODIFY COLUMN ${Sr(t, o.column)};`, o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-type on mariadb needs the declared column '${o.table}.${o.column}' (to render MODIFY COLUMN); it was not in ctx.declared.`));
2827
+ let t = K(n.declared, o.table, o.column);
2828
+ return t ? X(e, `ALTER TABLE ${G(o.table)} MODIFY COLUMN ${Tr(t, o.column)};`, o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-type on mariadb needs the declared column '${o.table}.${o.column}' (to render MODIFY COLUMN); it was not in ctx.declared.`));
2817
2829
  },
2818
2830
  mssql: () => {
2819
- let t = q(n.declared, o.table, o.column);
2820
- return t ? X(e, Vr(t, o.column, o.table), o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-type on mssql needs the declared column '${o.table}.${o.column}'.`));
2831
+ let t = K(n.declared, o.table, o.column);
2832
+ return t ? X(e, Ur(t, o.column, o.table), o.kind) : x.die(/* @__PURE__ */ Error(`alter-column-type on mssql needs the declared column '${o.table}.${o.column}'.`));
2821
2833
  },
2822
2834
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2823
- orElse: () => X(e, `ALTER TABLE ${G(o.table)} ALTER COLUMN ${G(o.column)} TYPE ${r}${i};`, o.kind)
2835
+ orElse: () => X(e, `ALTER TABLE ${W(o.table)} ALTER COLUMN ${W(o.column)} TYPE ${r}${i};`, o.kind)
2824
2836
  });
2825
2837
  break;
2826
2838
  }
@@ -2829,34 +2841,34 @@ BEGIN
2829
2841
  orElse: () => x.void
2830
2842
  });
2831
2843
  let a = `${o.column}__shadow`, s = `${o.column}__old`;
2832
- yield* e.unsafe(`ALTER TABLE ${G(o.table)} ADD COLUMN ${G(a)} ${r}`);
2833
- let c = o.using ?? G(o.column), l;
2844
+ yield* e.unsafe(`ALTER TABLE ${W(o.table)} ADD COLUMN ${W(a)} ${r}`);
2845
+ let c = o.using ?? W(o.column), l;
2834
2846
  for (;;) {
2835
2847
  let t = l === void 0 ? yield* e`SELECT ${e("id")} FROM ${e(o.table)} WHERE ${e(a)} IS NULL ORDER BY ${e("id")} ${Q(e, 5e3)}` : yield* e`SELECT ${e("id")} FROM ${e(o.table)} WHERE ${e(a)} IS NULL AND ${e("id")} > ${l} ORDER BY ${e("id")} ${Q(e, 5e3)}`;
2836
2848
  if (t.length === 0) break;
2837
- yield* e.unsafe(`UPDATE ${G(o.table)} SET ${G(a)} = ${c} WHERE ${G(o.column)} IS NOT NULL AND ${G(a)} IS NULL AND ${G("id")} IN (${t.map((e) => `'${e.id.replace(/'/g, "''")}'`).join(",")})`), l = t[t.length - 1].id;
2849
+ yield* e.unsafe(`UPDATE ${W(o.table)} SET ${W(a)} = ${c} WHERE ${W(o.column)} IS NOT NULL AND ${W(a)} IS NULL AND ${W("id")} IN (${t.map((e) => `'${e.id.replace(/'/g, "''")}'`).join(",")})`), l = t[t.length - 1].id;
2838
2850
  }
2839
- yield* x.logInfo(`alter-column-type shadow ${o.table}.${o.column}: shadow populated`).pipe(x.annotateLogs({ scope: "voltro:migrate" })), yield* e.unsafe(`ALTER TABLE ${G(o.table)} RENAME COLUMN ${G(o.column)} TO ${G(s)}`), yield* e.unsafe(`ALTER TABLE ${G(o.table)} RENAME COLUMN ${G(a)} TO ${G(o.column)}`), yield* e.unsafe(`ALTER TABLE ${G(o.table)} DROP COLUMN ${G(s)}`);
2851
+ yield* x.logInfo(`alter-column-type shadow ${o.table}.${o.column}: shadow populated`).pipe(x.annotateLogs({ scope: "voltro:migrate" })), yield* e.unsafe(`ALTER TABLE ${W(o.table)} RENAME COLUMN ${W(o.column)} TO ${W(s)}`), yield* e.unsafe(`ALTER TABLE ${W(o.table)} RENAME COLUMN ${W(a)} TO ${W(o.column)}`), yield* e.unsafe(`ALTER TABLE ${W(o.table)} DROP COLUMN ${W(s)}`);
2840
2852
  break;
2841
2853
  }
2842
2854
  case "drop-foreign-key":
2843
2855
  yield* e.onDialectOrElse({
2844
- mysql: () => X(e, bi(o), o.kind),
2856
+ mysql: () => X(e, Si(o), o.kind),
2845
2857
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2846
- orElse: () => X(e, yi(o), o.kind)
2858
+ orElse: () => X(e, xi(o), o.kind)
2847
2859
  });
2848
2860
  break;
2849
2861
  case "add-check":
2850
2862
  yield* e.onDialectOrElse({
2851
- mysql: () => X(e, xi(o, K), o.kind),
2863
+ mysql: () => X(e, Ci(o, G), o.kind),
2852
2864
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2853
- orElse: () => X(e, xi(o, G), o.kind)
2865
+ orElse: () => X(e, Ci(o, W), o.kind)
2854
2866
  });
2855
2867
  break;
2856
2868
  case "drop-check": yield* e.onDialectOrElse({
2857
- mysql: () => wi(e, o, n.declared),
2869
+ mysql: () => Ei(e, o, n.declared),
2858
2870
  sqlite: () => Z(e, J(o.table, n.declared), o.kind),
2859
- orElse: () => X(e, Si(o), o.kind)
2871
+ orElse: () => X(e, wi(o), o.kind)
2860
2872
  });
2861
2873
  }
2862
2874
  return {
@@ -2864,7 +2876,7 @@ BEGIN
2864
2876
  status: "applied",
2865
2877
  durationMs: Number((process.hrtime.bigint() - i) / 1000000n)
2866
2878
  };
2867
- }), Fi = (e, t, n, r) => x.gen(function* () {
2879
+ }), Li = (e, t, n, r) => x.gen(function* () {
2868
2880
  let i = [...new Set(r.map((e) => e.runId))];
2869
2881
  if (i.length > 1) return yield* x.die(/* @__PURE__ */ Error(`applyPlan: the resume ledger holds ${i.length} unfinished runs (${i.join(", ")}). Only one migration may be in flight at a time — the advisory lock enforces it — so this means a run was interrupted and a LATER one wrote over it without clearing.\nNothing was changed. Inspect \`${D}\`, reconcile the schema by hand, and delete the rows of the run you have finished.`));
2870
2882
  let a = i[0], o = [...r].map((e) => ({
@@ -2878,7 +2890,7 @@ BEGIN
2878
2890
  runId: a,
2879
2891
  why: "no operation had started — no DDL ran"
2880
2892
  };
2881
- let l = s ? yield* Ni(e, t, s.planned) : "clean", u = r[0].planFingerprint;
2893
+ let l = s ? yield* Fi(e, t, s.planned) : "clean", u = r[0].planFingerprint;
2882
2894
  if (u !== n.toFingerprint) return {
2883
2895
  kind: "discard",
2884
2896
  runId: a,
@@ -2889,7 +2901,7 @@ BEGIN
2889
2901
  kind: "discard",
2890
2902
  runId: a,
2891
2903
  why: "every recorded operation had already taken effect"
2892
- } : (yield* ji(e, a, f.map((e) => e.index), p.map((e) => e.index)), yield* x.logWarning(`migration resume: continuing run ${a} — replaying ${f.length} operation(s), ${o.length - f.length} already applied`).pipe(x.annotateLogs({ scope: "voltro:migrate" })), {
2904
+ } : (yield* Ni(e, a, f.map((e) => e.index), p.map((e) => e.index)), yield* x.logWarning(`migration resume: continuing run ${a} — replaying ${f.length} operation(s), ${o.length - f.length} already applied`).pipe(x.annotateLogs({ scope: "voltro:migrate" })), {
2893
2905
  kind: "resume",
2894
2906
  runId: a,
2895
2907
  ops: f.map((e) => ({
@@ -2897,39 +2909,39 @@ BEGIN
2897
2909
  planned: e.planned
2898
2910
  }))
2899
2911
  });
2900
- }), Ii = (e, t, n) => x.gen(function* () {
2912
+ }), Ri = (e, t, n) => x.gen(function* () {
2901
2913
  let r = t.operations.filter((e) => e.blocked);
2902
2914
  if (r.length > 0) return yield* x.die(/* @__PURE__ */ Error(`applyPlan: refusing to execute — ${r.length} blocked operations. Run \`voltro db plan\` to see the fixes.`));
2903
- yield* E(e, { schema: n.lockSchema });
2904
- let i = Date.now(), a = [], o = Pe(e), s = Ie(o) === "plan-transactional", c = s ? t.operations.filter((e) => e.classification !== "online-required") : [], u = s ? t.operations.filter((e) => e.classification === "online-required") : t.operations, d = `plan_${Date.now().toString(36)}_${Math.random().toString(36).slice(2, 8)}`, f = u.map((e, t) => ({
2915
+ yield* T(e, { schema: n.lockSchema });
2916
+ let i = Date.now(), a = [], o = Pe(e), s = Ie(o) === "plan-transactional", c = s ? t.operations.filter((e) => e.classification !== "online-required") : [], l = s ? t.operations.filter((e) => e.classification === "online-required") : t.operations, d = `plan_${Date.now().toString(36)}_${Math.random().toString(36).slice(2, 8)}`, f = l.map((e, t) => ({
2905
2917
  index: t,
2906
2918
  planned: e
2907
2919
  })), p = "fresh";
2908
2920
  try {
2909
- yield* Di(e, o);
2910
- let r = yield* Oi(e);
2921
+ yield* ki(e, o);
2922
+ let r = yield* Ai(e);
2911
2923
  if (r.length > 0) {
2912
- let n = yield* Fi(e, o, t, r);
2913
- n.kind === "resume" ? (d = n.runId, f = n.ops, p = "resume") : (yield* x.logWarning(`migration resume: discarding the ledger of run ${n.runId} — ${n.why}`).pipe(x.annotateLogs({ scope: "voltro:migrate" })), yield* Mi(e, n.runId));
2924
+ let n = yield* Li(e, o, t, r);
2925
+ n.kind === "resume" ? (d = n.runId, f = n.ops, p = "resume") : (yield* x.logWarning(`migration resume: discarding the ledger of run ${n.runId} — ${n.why}`).pipe(x.annotateLogs({ scope: "voltro:migrate" })), yield* Pi(e, n.runId));
2914
2926
  }
2915
- p === "fresh" && f.length > 0 && (yield* ki(e, d, t.toFingerprint, f)), c.length > 0 && (yield* e.withTransaction(x.gen(function* () {
2927
+ p === "fresh" && f.length > 0 && (yield* ji(e, d, t.toFingerprint, f)), c.length > 0 && (yield* e.withTransaction(x.gen(function* () {
2916
2928
  let e = yield* C.SqlClient;
2917
- for (let t of c) a.push(yield* Pi(e, t, n));
2929
+ for (let t of c) a.push(yield* Ii(e, t, n));
2918
2930
  })));
2919
2931
  for (let { index: t, planned: r } of f) {
2920
- yield* Ai(e, d, t, "started");
2921
- let i = a.length, o = yield* Pi(e, r, n, p).pipe(x.mapError((e) => Object.assign(e, { message: `${String(e?.message ?? e)}\n\n progress: ${i} of ${f.length + c.length} operation(s) applied before this one${c.length > 0 ? ` (${c.length} of them in a transaction)` : ""}.\n` + (s ? " This dialect applies a plan atomically, so the run is rolled back.\n" : ` This dialect does NOT apply a plan atomically: those ${i} are COMMITTED and there is no rollback.\n The next \`voltro db apply\` resumes from operation ${t} — the ledger records the sequence.\n`) })));
2922
- a.push(o), yield* Ai(e, d, t, "applied", o.durationMs);
2932
+ yield* Mi(e, d, t, "started");
2933
+ let i = a.length, o = yield* Ii(e, r, n, p).pipe(x.mapError((e) => Object.assign(e, { message: `${String(e?.message ?? e)}\n\n progress: ${i} of ${f.length + c.length} operation(s) applied before this one${c.length > 0 ? ` (${c.length} of them in a transaction)` : ""}.\n` + (s ? " This dialect applies a plan atomically, so the run is rolled back.\n" : ` This dialect does NOT apply a plan atomically: those ${i} are COMMITTED and there is no rollback.\n The next \`voltro db apply\` resumes from operation ${t} — the ledger records the sequence.\n`) })));
2934
+ a.push(o), yield* Mi(e, d, t, "applied", o.durationMs);
2923
2935
  }
2924
2936
  } finally {
2925
- yield* Me(e, { schema: n.lockSchema }).pipe(x.orDie);
2937
+ yield* E(e, { schema: n.lockSchema }).pipe(x.orDie);
2926
2938
  }
2927
2939
  let m = yield* n.replan(e);
2928
2940
  if (m.operations.length > 0) {
2929
2941
  let e = m.operations.slice(0, 10).map((e) => ` - ${e.op.kind} ${"table" in e.op ? e.op.table : ""}${"column" in e.op ? `.${String(e.op.column)}` : ""}`).join("\n");
2930
2942
  return yield* x.die(/* @__PURE__ */ Error(`applyPlan: the migration did not converge. ${t.operations.length} operation(s) were executed without error, but re-planning against the live schema still finds ${m.operations.length}:\n${e}${m.operations.length > 10 ? `\n … and ${m.operations.length - 10} more` : ""}\nNo fingerprint was recorded — recording one would make the next boot report "schema up to date" for a schema that was never applied. This is a framework bug; the schema is unchanged and safe.\nTwo causes look identical from here, so read the list before assuming either:\n - the DDL for those operations is a no-op (it succeeded and changed nothing), or\n - the planner cannot see what the DDL did, so it proposes the same work again — which is what an\n operation naming an object a PREVIOUS operation created or renamed usually means.\nReport the operation kinds above with the column types involved.`));
2931
2943
  }
2932
- let h = a.filter((e) => e.status === "applied").length, g = Date.now() - i, _ = d, v = (/* @__PURE__ */ new Date()).toISOString(), y = yield* W(e, v), b = [...c, ...f.map((e) => e.planned)];
2944
+ let h = a.filter((e) => e.status === "applied").length, g = Date.now() - i, _ = d, v = (/* @__PURE__ */ new Date()).toISOString(), y = yield* U(e, v), b = [...c, ...f.map((e) => e.planned)];
2933
2945
  yield* e`
2934
2946
  INSERT INTO ${e("_voltro_migration_plans")}
2935
2947
  (${e("id")}, ${e("fingerprint")}, ${e("liveFingerprint")}, ${e("operations")},
@@ -2939,9 +2951,9 @@ BEGIN
2939
2951
  (${_}, ${t.toFingerprint}, ${m.fromFingerprint}, ${JSON.stringify(b)},
2940
2952
  ${n.appliedBy}, ${n.environment}, ${n.source},
2941
2953
  ${g}, ${y}, ${n.notes ?? null})
2942
- `, yield* Mi(e, d);
2954
+ `, yield* Pi(e, d);
2943
2955
  let S = [...new Set(b.flatMap((e) => e.op.kind === "rename-table" ? [e.op.to] : [e.op.table]))];
2944
- return yield* x.promise(() => l({ changedTables: S }).catch(() => {})), {
2956
+ return yield* x.promise(() => u({ changedTables: S }).catch(() => {})), {
2945
2957
  id: _,
2946
2958
  appliedAt: v,
2947
2959
  fingerprint: t.toFingerprint,
@@ -2953,14 +2965,14 @@ BEGIN
2953
2965
  source: n.source,
2954
2966
  ...n.notes ? { notes: n.notes } : {}
2955
2967
  };
2956
- }), Li = (e) => e.operations.filter((e) => e.blocked).map((e) => ` - ${e.op.kind} ${"table" in e.op ? `[${e.op.table}]` : ""}: ${e.reason ?? "<no reason>"}\n fix: ${e.blocked?.fix ?? "<no fix>"}`).join("\n"), Ri = (e) => e`
2968
+ }), zi = (e) => e.operations.filter((e) => e.blocked).map((e) => ` - ${e.op.kind} ${"table" in e.op ? `[${e.op.table}]` : ""}: ${e.reason ?? "<no reason>"}\n fix: ${e.blocked?.fix ?? "<no fix>"}`).join("\n"), Bi = (e) => e`
2957
2969
  SELECT fingerprint
2958
2970
  FROM _voltro_migration_plans
2959
2971
  ORDER BY ${e("appliedAt")} DESC
2960
2972
  LIMIT 1
2961
- `.pipe(x.map((e) => e.length > 0 ? e[0].fingerprint : void 0), x.catchAll(() => x.succeed(void 0))), zi = (e, t, n) => x.gen(function* () {
2962
- if ((yield* Ri(e)) === t.toFingerprint) return "already-current";
2963
- let r = `plan_${Date.now().toString(36)}`, i = yield* W(e, (/* @__PURE__ */ new Date()).toISOString());
2973
+ `.pipe(x.map((e) => e.length > 0 ? e[0].fingerprint : void 0), x.catchAll(() => x.succeed(void 0))), Vi = (e, t, n) => x.gen(function* () {
2974
+ if ((yield* Bi(e)) === t.toFingerprint) return "already-current";
2975
+ let r = `plan_${Date.now().toString(36)}`, i = yield* U(e, (/* @__PURE__ */ new Date()).toISOString());
2964
2976
  return yield* e`
2965
2977
  INSERT INTO ${e("_voltro_migration_plans")}
2966
2978
  (${e("id")}, ${e("fingerprint")}, ${e("liveFingerprint")}, ${e("operations")},
@@ -2971,8 +2983,8 @@ BEGIN
2971
2983
  ${n.appliedBy}, ${n.environment}, ${n.source},
2972
2984
  ${0}, ${i}, ${"no DDL — the declared schema already matched the database"})
2973
2985
  `, "recorded";
2974
- }).pipe(x.catchAll(() => x.succeed("already-current"))), Bi = (e, t) => x.gen(function* () {
2975
- let n = P(I(t, Pe(e))), r = yield* Ri(e);
2986
+ }).pipe(x.catchAll(() => x.succeed("already-current"))), Hi = (e, t) => x.gen(function* () {
2987
+ let n = P(F(t, Pe(e))), r = yield* Bi(e);
2976
2988
  return r === n ? {
2977
2989
  kind: "up-to-date",
2978
2990
  fingerprint: n
@@ -2981,23 +2993,23 @@ BEGIN
2981
2993
  expected: n,
2982
2994
  ...r === void 0 ? {} : { actual: r }
2983
2995
  };
2984
- }), Vi = [
2996
+ }), Ui = [
2985
2997
  "pgeagertest_",
2986
2998
  "mig_e2e_",
2987
2999
  "mig_test_",
2988
3000
  "mysqleagertest_",
2989
3001
  "mssqleagertest_",
2990
3002
  "sqliteeagertest_"
2991
- ], Hi = (e) => Vi.some((t) => e.startsWith(t)), Ui = (e, t) => x.gen(function* () {
3003
+ ], Wi = (e) => Ui.some((t) => e.startsWith(t)), Gi = (e, t) => x.gen(function* () {
2992
3004
  if (process.env.VOLTRO_TEST_FIXTURE_GC === "off") return [];
2993
- let n = t.filter((e) => Hi(e.name)).map((e) => e.name);
3005
+ let n = t.filter((e) => Wi(e.name)).map((e) => e.name);
2994
3006
  if (n.length === 0) return [];
2995
3007
  for (let t of n) yield* e.unsafe(`DROP TABLE IF EXISTS "${t}" CASCADE`).pipe(x.catchAll(() => x.void));
2996
3008
  return n;
2997
- }), Wi = () => {
3009
+ }), Ki = () => {
2998
3010
  let e = (process.env.VOLTRO_DB_IGNORE_TABLES ?? "").split(",").map((e) => e.trim()).filter((e) => e.length > 0);
2999
3011
  return e.length > 0 ? { ignoreTables: e } : {};
3000
- }, Gi = (e) => {
3012
+ }, qi = (e) => {
3001
3013
  if (e === void 0) return;
3002
3014
  let t = e.trim();
3003
3015
  if (t === "") return;
@@ -3007,48 +3019,48 @@ BEGIN
3007
3019
  kind: "tables",
3008
3020
  tables: new Set(n)
3009
3021
  } : void 0;
3010
- }, Ki = (e) => typeof e.table == "string" ? e.table : void 0, qi = (e, t = { kind: "all" }) => ({
3022
+ }, Ji = (e) => typeof e.table == "string" ? e.table : void 0, Yi = (e, t = { kind: "all" }) => ({
3011
3023
  ...e,
3012
3024
  operations: e.operations.map((e) => {
3013
3025
  if (!e.blocked || e.classification !== "lossy") return e;
3014
3026
  if (t?.kind === "tables") {
3015
- let n = Ki(e.op);
3027
+ let n = Ji(e.op);
3016
3028
  if (n === void 0 || !t.tables.has(n)) return e;
3017
3029
  }
3018
3030
  let { blocked: n, ...r } = e;
3019
3031
  return r;
3020
3032
  })
3021
- }), Ji = (e, t, n) => t === "postgres" ? Yt(e, n).pipe(x.flatMap((e) => {
3022
- let t = Xt(e);
3033
+ }), Xi = (e, t, n) => t === "postgres" ? Xt(e, n).pipe(x.flatMap((e) => {
3034
+ let t = Zt(e);
3023
3035
  return t === void 0 ? x.void : x.logWarning(`auto-migrate: ${t}`).pipe(x.annotateLogs({ scope: "voltro:migrate" }));
3024
- }), x.catchAll(() => x.void)) : x.void, Yi = (e, t, n) => x.gen(function* () {
3036
+ }), x.catchAll(() => x.void)) : x.void, Zi = (e, t, n) => x.gen(function* () {
3025
3037
  let r = Pe(e), i = t;
3026
3038
  if (process.env.VOLTRO_MIGRATE_FORCE !== "1") {
3027
- let t = P(I(i, r));
3028
- if ((yield* Ri(e)) === t) return yield* Ji(e, r, i), {
3039
+ let t = P(F(i, r));
3040
+ if ((yield* Bi(e)) === t) return yield* Xi(e, r, i), {
3029
3041
  kind: "up-to-date",
3030
3042
  fingerprint: t
3031
3043
  };
3032
3044
  }
3033
- let a = yield* Qn(e), o = yield* Ui(e, a.tables);
3045
+ let a = yield* $n(e), o = yield* Gi(e, a.tables);
3034
3046
  o.length > 0 && (yield* x.logInfo(`auto-migrate: reaped ${o.length} test-fixture leftover(s)`).pipe(x.annotateLogs({
3035
3047
  scope: "voltro:migrate",
3036
3048
  count: o.length
3037
- })), a = yield* Qn(e));
3038
- let s = new Set(t.map((e) => e.tableName)), c = (e) => e.filter((e) => !m(e.name) || s.has(e.name)), l = Mn({
3049
+ })), a = yield* $n(e));
3050
+ let s = new Set(t.map((e) => e.tableName)), c = (e) => e.filter((e) => !h(e.name) || s.has(e.name)), l = Nn({
3039
3051
  declared: i,
3040
3052
  live: { tables: c(a.tables) },
3041
3053
  dialect: r,
3042
- ...Wi()
3054
+ ...Ki()
3043
3055
  });
3044
3056
  if (l.summary.blocked > 0) {
3045
- let e = l.operations.filter((e) => e.blocked).every((e) => e.classification === "lossy"), t = Gi(process.env.VOLTRO_DESTRUCTIVE_OK);
3046
- if (t === void 0 || !e || (l = qi(l, t), l.operations.some((e) => e.blocked))) return {
3057
+ let e = l.operations.filter((e) => e.blocked).every((e) => e.classification === "lossy"), t = qi(process.env.VOLTRO_DESTRUCTIVE_OK);
3058
+ if (t === void 0 || !e || (l = Yi(l, t), l.operations.some((e) => e.blocked))) return {
3047
3059
  kind: "refused-blocked",
3048
3060
  plan: l
3049
3061
  };
3050
3062
  }
3051
- return l.operations.length === 0 ? (yield* zi(e, l, {
3063
+ return l.operations.length === 0 ? (yield* Vi(e, l, {
3052
3064
  appliedBy: n.appliedBy,
3053
3065
  environment: n.environment === "prod" ? "dev" : n.environment,
3054
3066
  source: "auto-diff"
@@ -3057,37 +3069,37 @@ BEGIN
3057
3069
  fingerprint: l.toFingerprint
3058
3070
  }) : {
3059
3071
  kind: "applied",
3060
- applied: yield* Ii(e, l, {
3072
+ applied: yield* Ri(e, l, {
3061
3073
  declared: t,
3062
3074
  appliedBy: n.appliedBy,
3063
3075
  environment: n.environment === "prod" ? "dev" : n.environment,
3064
3076
  source: "auto-diff",
3065
3077
  replan: (e) => x.gen(function* () {
3066
- let t = yield* Qn(e);
3067
- return Mn({
3078
+ let t = yield* $n(e);
3079
+ return Nn({
3068
3080
  declared: i,
3069
3081
  live: { tables: c(t.tables) },
3070
3082
  dialect: r,
3071
- ...Wi()
3083
+ ...Ki()
3072
3084
  });
3073
3085
  })
3074
3086
  }),
3075
3087
  plan: l
3076
3088
  };
3077
- }), Xi = (e, t, n) => process.env.VOLTRO_AUTO_MIGRATE === "0" ? x.succeed({
3089
+ }), Qi = (e, t, n) => process.env.VOLTRO_AUTO_MIGRATE === "0" ? x.succeed({
3078
3090
  kind: "skipped",
3079
3091
  reason: "VOLTRO_AUTO_MIGRATE=0"
3080
- }) : n.environment === "prod" ? Bi(e, t) : Yi(e, t, n), Zi = (e, t) => {
3092
+ }) : n.environment === "prod" ? Hi(e, t) : Zi(e, t, n), $i = (e, t) => {
3081
3093
  switch (e.kind) {
3082
3094
  case "skipped": return `auto-migrate: skipped (${e.reason})`;
3083
- case "up-to-date": return `auto-migrate: schema up to date (${t}, fingerprint=${F(e.fingerprint)})`;
3095
+ case "up-to-date": return `auto-migrate: schema up to date (${t}, fingerprint=${Gt(e.fingerprint)})`;
3084
3096
  case "applied": {
3085
3097
  let t = e.plan.summary;
3086
- return `auto-migrate: applied ${e.applied.appliedOps} op(s) in ${e.applied.durationMs}ms [safe=${t.safe} needs-default=${t.needsDefault} needs-backfill=${t.needsBackfill} rename=${t.needsRenameAnnotation} lossy=${t.lossy}] fingerprint=${F(e.applied.fingerprint)}`;
3098
+ return `auto-migrate: applied ${e.applied.appliedOps} op(s) in ${e.applied.durationMs}ms [safe=${t.safe} needs-default=${t.needsDefault} needs-backfill=${t.needsBackfill} rename=${t.needsRenameAnnotation} lossy=${t.lossy}] fingerprint=${Gt(e.applied.fingerprint)}`;
3087
3099
  }
3088
- case "prod-mismatch": return `auto-migrate: SCHEMA FINGERPRINT MISMATCH — declared=${F(e.expected)}` + (e.actual ? ` live=${F(e.actual)}` : " live=<no _voltro_migration_plans row>") + ". Run `voltro db apply --plan plan.json` from the deploy pipeline before serving.";
3100
+ case "prod-mismatch": return `auto-migrate: SCHEMA FINGERPRINT MISMATCH — declared=${Gt(e.expected)}` + (e.actual ? ` live=${Gt(e.actual)}` : " live=<no _voltro_migration_plans row>") + ". Run `voltro db apply --plan plan.json` from the deploy pipeline before serving.";
3089
3101
  case "refused-blocked": {
3090
- let t = e.plan.operations.filter((e) => e.blocked), n = t.filter((e) => e.op.kind === "drop-table").length, r = t.filter((e) => e.op.kind === "drop-table").map((e) => "table" in e.op ? e.op.table : "").filter(Boolean), i = t.filter((e) => e.op.kind === "add-column").length, a = t.filter((e) => e.op.kind === "drop-column").length, o = t.filter((e) => e.classification === "needs-rename-annotation").length, s = `auto-migrate: REFUSED — ${e.plan.summary.blocked} blocked operation(s):\n` + Li(e.plan), c = [""];
3102
+ let t = e.plan.operations.filter((e) => e.blocked), n = t.filter((e) => e.op.kind === "drop-table").length, r = t.filter((e) => e.op.kind === "drop-table").map((e) => "table" in e.op ? e.op.table : "").filter(Boolean), i = t.filter((e) => e.op.kind === "add-column").length, a = t.filter((e) => e.op.kind === "drop-column").length, o = t.filter((e) => e.classification === "needs-rename-annotation").length, s = `auto-migrate: REFUSED — ${e.plan.summary.blocked} blocked operation(s):\n` + zi(e.plan), c = [""];
3091
3103
  if (n > 0 && c.push(`${n} table(s) exist in the live DB but aren't in your declared schema.`, "This is usually one of three things:", " (a) You're iterating on the schema — the table file got renamed, moved, or temporarily commented out.", " → Restore the declaration. Your data stays intact.", " (b) You want to KEEP the table but NOT manage it with Voltro (a leftover from another tool —", " a Strapi/Rails/legacy migration artifact, or an externally-owned table).", ` → Set \`VOLTRO_DB_IGNORE_TABLES=${r.join(",")}\` (comma-separated).`, " The planner excludes those tables from the diff entirely — it never drops them, and they", " stop blocking your OTHER (additive) changes. This is the fix when a leftover freezes your schema.", " (c) You actually want to drop the table.", ` → Set \`VOLTRO_DESTRUCTIVE_OK=${r.join(",")}\` for ONE run — it acknowledges`, " the data loss for THOSE tables only; every other lossy op in this plan stays blocked.", " (`VOLTRO_DESTRUCTIVE_OK=1` acknowledges all of them, which is rarely what you mean.)", " There is deliberately no `dropped()` marker for a TABLE, unlike for a column: a", " dropped column leaves a slot worth documenting in the declaration, a dropped table", " leaves nothing — the marker would be a dead entry you must remember to delete.", " Soft-drop: set `VOLTRO_SOFT_DROP=1` alongside DESTRUCTIVE_OK to RENAME instead of DROP", " (data survives as `<name>__dropped_<ts>` for ~7d; restorable via `voltro db restore-snapshot`)."), i > 0 && c.push(`${i} required column(s) need a backfill strategy before adding to a populated table.`, " → Annotate the column: `.backfill(sql`<expr>`)` or `.backfill(row => <fn>)` or `.default(<value>)`.", " Existing rows get the backfill value; the column then lands as NOT NULL."), a > 0) {
3092
3104
  let t = /* @__PURE__ */ new Map(), n = /* @__PURE__ */ new Map();
3093
3105
  for (let r of e.plan.operations) {
@@ -3104,7 +3116,7 @@ BEGIN
3104
3116
  return o > 0 && c.push(`${o} column(s) look like renames (one column gone + a new one of same shape appeared).`, " → On the NEW column add `.renamedFrom('<oldName>')` so the planner emits RENAME instead of DROP+ADD."), c.push("", "See `voltro db plan` for the full machine-readable diff."), s + "\n" + c.join("\n");
3105
3117
  }
3106
3118
  }
3107
- }, Qi = /* @__PURE__ */ new Set([
3119
+ }, ea = /* @__PURE__ */ new Set([
3108
3120
  "node_modules",
3109
3121
  "dist",
3110
3122
  "build",
@@ -3113,24 +3125,24 @@ BEGIN
3113
3125
  ".next",
3114
3126
  ".git",
3115
3127
  ".framework"
3116
- ]), $i = async (e) => {
3128
+ ]), ta = async (e) => {
3117
3129
  let t = [], n = async (e) => {
3118
3130
  let r = await ne.readdir(e, { withFileTypes: !0 }).catch(() => []);
3119
3131
  for (let i of r) {
3120
- if (Qi.has(i.name)) continue;
3132
+ if (ea.has(i.name)) continue;
3121
3133
  let r = re(e, i.name);
3122
- i.isDirectory() ? await n(r) : i.isFile() && d.test(i.name) && t.push(r);
3134
+ i.isDirectory() ? await n(r) : i.isFile() && f.test(i.name) && t.push(r);
3123
3135
  }
3124
3136
  };
3125
3137
  return await n(e), t.sort((e, t) => {
3126
3138
  let n = e.split("/").pop() ?? e, r = t.split("/").pop() ?? t;
3127
3139
  return n.localeCompare(r);
3128
3140
  });
3129
- }, ea = async (e) => {
3141
+ }, na = async (e) => {
3130
3142
  let t = [];
3131
3143
  for (let n of e) {
3132
3144
  let e = (await import(ie(n).href)).default;
3133
- if (!c(e)) {
3145
+ if (!l(e)) {
3134
3146
  process.stderr.write(`[voltro:migrate] ${n} has no default-exported \`migration(...)\` — skipped\n`);
3135
3147
  continue;
3136
3148
  }
@@ -3140,11 +3152,11 @@ BEGIN
3140
3152
  });
3141
3153
  }
3142
3154
  return t;
3143
- }, ta = (e) => e`
3155
+ }, ra = (e) => e`
3144
3156
  SELECT ${e("id")}
3145
3157
  FROM ${e("_voltro_migration_plans")}
3146
3158
  WHERE ${e("source")} = 'file'
3147
- `.pipe(x.map((e) => e.map((e) => e.id)), x.catchAll(() => x.succeed([]))), na = class extends Error {
3159
+ `.pipe(x.map((e) => e.map((e) => e.id)), x.catchAll(() => x.succeed([]))), ia = class extends Error {
3148
3160
  migrationId;
3149
3161
  file;
3150
3162
  cause;
@@ -3152,7 +3164,7 @@ BEGIN
3152
3164
  constructor(e, t, n) {
3153
3165
  super(`migration ${e}: up() SUCCEEDED but the ledger row could not be written.\n The change IS in the database. It is NOT recorded, so the next run would apply it AGAIN.\n Do not re-run ${t} until this is resolved.\n Cause: ${n instanceof Error ? n.message : String(n)}`), this.migrationId = e, this.file = t, this.cause = n, this.name = "FileMigrationLedgerError";
3154
3166
  }
3155
- }, ra = (e, t, n, r) => x.gen(function* () {
3167
+ }, aa = (e, t, n, r) => x.gen(function* () {
3156
3168
  let i = Date.now(), a = (/* @__PURE__ */ new Date()).toISOString(), o = {
3157
3169
  sql: e,
3158
3170
  log: {
@@ -3173,7 +3185,7 @@ BEGIN
3173
3185
  });
3174
3186
  let c = Date.now() - i;
3175
3187
  !x.isEffect(s) && c < 2 && (yield* x.logWarning(`migration ${t.migration.id}: up() resolved in ${c}ms — did the body \`await\` an \`@effect/sql\` Effect by accident? \`sql.unsafe(...)\` returns an Effect, not a Promise; \`await\` on it is a silent no-op. Switch the body to \`Effect.gen(function* () { yield* sql.unsafe(...) })\` form.`).pipe(x.annotateLogs({ scope: `migrations:file:${t.migration.id}` })));
3176
- let l = yield* W(e, a);
3188
+ let l = yield* U(e, a);
3177
3189
  return yield* e`
3178
3190
  INSERT INTO ${e("_voltro_migration_plans")}
3179
3191
  (${e("id")}, ${e("fingerprint")}, ${e("operations")},
@@ -3186,10 +3198,10 @@ BEGIN
3186
3198
  }])},
3187
3199
  ${r}, ${n}, ${"file"},
3188
3200
  ${c}, ${l}, ${t.migration.description})
3189
- `.pipe(x.mapError((e) => new na(t.migration.id, t.file, e))), { durationMs: c };
3190
- }), ia = (e, t) => x.gen(function* () {
3201
+ `.pipe(x.mapError((e) => new ia(t.migration.id, t.file, e))), { durationMs: c };
3202
+ }), oa = (e, t) => x.gen(function* () {
3191
3203
  let n = yield* x.tryPromise({
3192
- try: () => $i(re(t, "migrations")),
3204
+ try: () => ta(re(t, "migrations")),
3193
3205
  catch: (e) => e
3194
3206
  });
3195
3207
  if (n.length === 0) return {
@@ -3197,25 +3209,25 @@ BEGIN
3197
3209
  skipped: []
3198
3210
  };
3199
3211
  let r = yield* x.tryPromise({
3200
- try: () => ea(n),
3212
+ try: () => na(n),
3201
3213
  catch: (e) => e
3202
3214
  });
3203
3215
  if (r.length === 0) return {
3204
3216
  pending: [],
3205
3217
  skipped: []
3206
3218
  };
3207
- let i = new Set(yield* ta(e));
3219
+ let i = new Set(yield* ra(e));
3208
3220
  return {
3209
3221
  pending: r.filter((e) => !i.has(e.migration.id)),
3210
3222
  skipped: r.filter((e) => i.has(e.migration.id)).map((e) => e.migration.id)
3211
3223
  };
3212
- }), aa = (e, t) => ia(e, t).pipe(x.map((e) => e.pending.map((e) => e.migration.id))), oa = (e, t) => x.gen(function* () {
3213
- let { pending: n, skipped: r } = yield* ia(e, t.projectRoot);
3224
+ }), sa = (e, t) => oa(e, t).pipe(x.map((e) => e.pending.map((e) => e.migration.id))), ca = (e, t) => x.gen(function* () {
3225
+ let { pending: n, skipped: r } = yield* oa(e, t.projectRoot);
3214
3226
  if (n.length === 0) return {
3215
3227
  applied: [],
3216
3228
  skipped: r
3217
3229
  };
3218
- yield* E(e, { schema: t.lockSchema });
3230
+ yield* T(e, { schema: t.lockSchema });
3219
3231
  let i = [];
3220
3232
  try {
3221
3233
  for (let r of n) {
@@ -3224,7 +3236,7 @@ BEGIN
3224
3236
  id: r.migration.id,
3225
3237
  file: r.file
3226
3238
  }));
3227
- let { durationMs: n } = yield* ra(e, r, t.env, t.appliedBy);
3239
+ let { durationMs: n } = yield* aa(e, r, t.env, t.appliedBy);
3228
3240
  i.push({
3229
3241
  id: r.migration.id,
3230
3242
  durationMs: n
@@ -3235,28 +3247,28 @@ BEGIN
3235
3247
  }));
3236
3248
  }
3237
3249
  } finally {
3238
- yield* Me(e, { schema: t.lockSchema }).pipe(x.orDie);
3250
+ yield* E(e, { schema: t.lockSchema }).pipe(x.orDie);
3239
3251
  }
3240
3252
  return {
3241
3253
  applied: i,
3242
3254
  skipped: r
3243
3255
  };
3244
- }), sa = (e, t) => e`
3256
+ }), la = (e, t) => e`
3245
3257
  SELECT ${e("id")}
3246
3258
  FROM ${e("_voltro_migration_plans")}
3247
3259
  WHERE ${e("id")} = ${t} AND ${e("source")} = 'file'
3248
3260
  LIMIT 1
3249
- `, ca = (e, t) => x.gen(function* () {
3250
- if (!(yield* sa(e, t.id))[0]) return yield* x.fail(/* @__PURE__ */ Error(`rollback: ${t.id} not found in _voltro_migration_plans (file source)`));
3261
+ `, ua = (e, t) => x.gen(function* () {
3262
+ if (!(yield* la(e, t.id))[0]) return yield* x.fail(/* @__PURE__ */ Error(`rollback: ${t.id} not found in _voltro_migration_plans (file source)`));
3251
3263
  let n = yield* x.tryPromise({
3252
- try: () => $i(re(t.projectRoot, "migrations")),
3264
+ try: () => ta(re(t.projectRoot, "migrations")),
3253
3265
  catch: (e) => e
3254
3266
  }), r = (yield* x.tryPromise({
3255
- try: () => ea(n),
3267
+ try: () => na(n),
3256
3268
  catch: (e) => e
3257
3269
  })).find((e) => e.migration.id === t.id);
3258
3270
  if (!r) return yield* x.fail(/* @__PURE__ */ Error(`rollback: file for migration ${t.id} not found on disk under ${t.projectRoot}/migrations/`));
3259
- yield* E(e, { schema: t.lockSchema });
3271
+ yield* T(e, { schema: t.lockSchema });
3260
3272
  let i = Date.now();
3261
3273
  try {
3262
3274
  let n = {
@@ -3283,9 +3295,9 @@ BEGIN
3283
3295
  durationMs: o
3284
3296
  };
3285
3297
  } finally {
3286
- yield* Me(e, { schema: t.lockSchema }).pipe(x.orDie);
3298
+ yield* E(e, { schema: t.lockSchema }).pipe(x.orDie);
3287
3299
  }
3288
- }), la = (e) => x.gen(function* () {
3300
+ }), da = (e) => x.gen(function* () {
3289
3301
  let t = yield* C.SqlClient, n = yield* t`
3290
3302
  SELECT id, fingerprint, appliedAt FROM _voltro_migration_plans
3291
3303
  WHERE source = 'auto-diff'
@@ -3330,7 +3342,7 @@ BEGIN
3330
3342
  snapshotFingerprint: e.fingerprint,
3331
3343
  snapshotId: i
3332
3344
  };
3333
- }), ua = { safe: !0 }, da = (e) => {
3345
+ }), fa = { safe: !0 }, pa = (e) => {
3334
3346
  switch (e.kind) {
3335
3347
  case "drop-column": return {
3336
3348
  safe: !1,
@@ -3357,7 +3369,7 @@ BEGIN
3357
3369
  reason: `old instances read/write "${e.table}"."${e.column}" as ${e.from}; the new ${e.to} type can reject their writes or fail to decode their reads`,
3358
3370
  remedy: "add a new column of the target type + backfill + dual-write, cut code over, then drop the old column in a LATER deploy"
3359
3371
  };
3360
- case "alter-column-nullability": return e.toNullable ? ua : {
3372
+ case "alter-column-nullability": return e.toNullable ? fa : {
3361
3373
  safe: !1,
3362
3374
  reason: `old instances may INSERT "${e.table}" without (or with NULL in) "${e.column}", which the new NOT NULL rejects`,
3363
3375
  remedy: `make code always write "${e.column}" and deploy that first; add NOT NULL in a LATER deploy (with a default to cover the gap)`
@@ -3387,12 +3399,12 @@ BEGIN
3387
3399
  case "drop-unique":
3388
3400
  case "drop-unique-composite":
3389
3401
  case "drop-foreign-key":
3390
- case "drop-check": return ua;
3402
+ case "drop-check": return fa;
3391
3403
  }
3392
- }, fa = (e) => {
3404
+ }, ma = (e) => {
3393
3405
  let t = [];
3394
3406
  for (let n of e) {
3395
- let e = da(n.op);
3407
+ let e = pa(n.op);
3396
3408
  e.safe || t.push({
3397
3409
  op: n,
3398
3410
  reason: e.reason,
@@ -3400,7 +3412,7 @@ BEGIN
3400
3412
  });
3401
3413
  }
3402
3414
  return t;
3403
- }, pa = (e) => {
3415
+ }, ha = (e) => {
3404
3416
  if (!e.enabled || e.unsafeCount === 0) return {
3405
3417
  refuse: !1,
3406
3418
  warnForced: !1,
@@ -3416,18 +3428,18 @@ BEGIN
3416
3428
  warnForced: !1,
3417
3429
  message: `${t}. Old instances would break against the new schema mid-rollout. Split into expand → deploy → contract (see the ⚠ list above), deploy with no overlap (maintenance window / scale-to-zero), or pass --force to override.`
3418
3430
  };
3419
- }, ma = (e) => {
3431
+ }, ga = (e) => {
3420
3432
  let t = e.table;
3421
3433
  if (typeof t == "string") return t;
3422
3434
  let n = e.from;
3423
3435
  return typeof n == "string" ? n : void 0;
3424
- }, ha = (e) => ({
3436
+ }, _a = (e) => ({
3425
3437
  kind: e.op.kind,
3426
- table: ma(e.op),
3438
+ table: ga(e.op),
3427
3439
  classification: e.classification,
3428
3440
  reason: e.reason,
3429
3441
  blockedFix: e.blocked?.fix
3430
- }), ga = (e) => e.operations.map(ha), _a = async (e) => {
3442
+ }), va = (e) => e.operations.map(_a), ya = async (e) => {
3431
3443
  let t = e.log ?? (() => {}), n = {
3432
3444
  branchId: e.branchId,
3433
3445
  mechanism: e.mechanism,
@@ -3446,10 +3458,10 @@ BEGIN
3446
3458
  applied: !1,
3447
3459
  converged: !1,
3448
3460
  residual: r,
3449
- infidelity: ga(o)
3461
+ infidelity: va(o)
3450
3462
  };
3451
3463
  else {
3452
- let i = await e.plan(), o = ga(i), s = o.filter((e) => e.classification === "lossy"), c = qi(i), l = c.operations.filter((e) => e.blocked !== void 0).map(ha);
3464
+ let i = await e.plan(), o = va(i), s = o.filter((e) => e.classification === "lossy"), c = Yi(i), l = c.operations.filter((e) => e.blocked !== void 0).map(_a);
3453
3465
  if (l.length > 0) a = {
3454
3466
  ...n,
3455
3467
  outcome: "blocked",
@@ -3474,7 +3486,7 @@ BEGIN
3474
3486
  };
3475
3487
  else {
3476
3488
  await e.apply(c), t(`branch ${e.branchId}: applied ${o.length} operation(s)`);
3477
- let i = ga(await e.replan());
3489
+ let i = va(await e.replan());
3478
3490
  a = {
3479
3491
  ...n,
3480
3492
  outcome: i.length > 0 ? "diverged" : s.length > 0 ? "lossy" : "clean",
@@ -3512,7 +3524,7 @@ BEGIN
3512
3524
  ...a,
3513
3525
  tornDown: o
3514
3526
  };
3515
- }, va = (e) => {
3527
+ }, ba = (e) => {
3516
3528
  switch (e.outcome) {
3517
3529
  case "clean": return 0;
3518
3530
  case "lossy": return 2;
@@ -3521,22 +3533,22 @@ BEGIN
3521
3533
  case "infidelity": return 1;
3522
3534
  case "failed": return 1;
3523
3535
  }
3524
- }, ya = (e) => ` ${e.classification === "lossy" ? "✗" : "•"} ${e.kind}${e.table ? ` ${e.table}` : ""} [${e.classification}]${e.reason ? ` — ${e.reason}` : ""}${e.blockedFix ? `\n ! ${e.blockedFix}` : ""}`, ba = (e) => {
3536
+ }, xa = (e) => ` ${e.classification === "lossy" ? "✗" : "•"} ${e.kind}${e.table ? ` ${e.table}` : ""} [${e.classification}]${e.reason ? ` — ${e.reason}` : ""}${e.blockedFix ? `\n ! ${e.blockedFix}` : ""}`, Sa = (e) => {
3525
3537
  let t = [];
3526
3538
  if (t.push(`branch rehearsal · ${e.branchId} · mechanism ${e.mechanism}`), t.push(` branched ${e.branchedTables} table(s), replayed ${e.replayedForeignKeys} foreign key(s)`), e.outcome === "failed") t.push(` FAILED: ${e.error ?? "unknown error"}`);
3527
3539
  else if (e.outcome === "infidelity") {
3528
3540
  t.push(" BRANCH IS NOT A FAITHFUL COPY of the parent — the rehearsal proves nothing about your migration."), t.push(" The parent's own schema still differs from the branch by:");
3529
- for (let n of e.infidelity) t.push(ya(n));
3541
+ for (let n of e.infidelity) t.push(xa(n));
3530
3542
  } else {
3531
3543
  t.push(` plan: ${e.operations.length} operation(s), ${e.lossy.length} lossy, ${e.blocked.length} refused`);
3532
- for (let n of e.operations) t.push(ya(n));
3533
- if (e.lossy.length > 0 && (t.push(""), t.push(` ⚠ ${e.lossy.length} operation(s) DESTROY DATA. They were executed on the branch (it is`), t.push(" disposable) so they are rehearsed, but production refuses them until you set"), t.push(" VOLTRO_DESTRUCTIVE_OK — naming the tables, not `1`.")), e.blocked.length > 0 && (t.push(""), t.push(` ${e.blocked.length} operation(s) the planner will not auto-apply anywhere — the plan was NOT executed.`)), e.applied && (t.push(""), t.push(e.converged ? " ✓ applied on the branch, and the re-plan is EMPTY (the migration converges)." : ` ✗ applied, but the re-plan STILL proposes ${e.residual.length} operation(s) — this migration does not converge:`), !e.converged)) for (let n of e.residual) t.push(ya(n));
3544
+ for (let n of e.operations) t.push(xa(n));
3545
+ if (e.lossy.length > 0 && (t.push(""), t.push(` ⚠ ${e.lossy.length} operation(s) DESTROY DATA. They were executed on the branch (it is`), t.push(" disposable) so they are rehearsed, but production refuses them until you set"), t.push(" VOLTRO_DESTRUCTIVE_OK — naming the tables, not `1`.")), e.blocked.length > 0 && (t.push(""), t.push(` ${e.blocked.length} operation(s) the planner will not auto-apply anywhere — the plan was NOT executed.`)), e.applied && (t.push(""), t.push(e.converged ? " ✓ applied on the branch, and the re-plan is EMPTY (the migration converges)." : ` ✗ applied, but the re-plan STILL proposes ${e.residual.length} operation(s) — this migration does not converge:`), !e.converged)) for (let n of e.residual) t.push(xa(n));
3534
3546
  }
3535
3547
  return t.push(e.tornDown ? ` branch ${e.branchId} torn down.` : ` branch ${e.branchId} KEPT — drop it when you are done.`), t.join("\n");
3536
- }, xa = (e, ...t) => ({
3548
+ }, Ca = (e, ...t) => ({
3537
3549
  _tag: "RawSqlFragment",
3538
3550
  strings: [...e],
3539
3551
  values: [...t]
3540
- }), Sa = (e) => typeof e == "object" && !!e && e._tag === "RawSqlFragment";
3552
+ }), wa = (e) => typeof e == "object" && !!e && e._tag === "RawSqlFragment";
3541
3553
  //#endregion
3542
- export { O as DEFAULT_CDC_CHANNEL, d as FILE_MIGRATION_PATTERN, na as FileMigrationLedgerError, Je as REACTIVE_TRIGGER_PREFIX, pe as VOLTRO_MIGRATION_LOCK_KEY, E as acquireMigrationLock, W as appliedAtValue, Lt as applyNamespacedSchema, Ii as applyPlan, Dt as applySchema, pa as assessRollingDeployGate, va as branchRehearsalExitCode, Bn as chunkTables, da as classifyRollingDeploySafety, I as declaredSnapshot, et as defaultArrayClause, $e as defaultClause, j as defaultJsonClause, Zi as describeOutcome, Gi as destructiveScope, Yt as detectReactiveTriggerDrift, $r as emitAddIndexMysql, Pr as emitCreateTableMysql, hr as emitDropColumnDdl, gr as emitDropColumnDdlMysql, Et as emitFrameworkBootstrapSql, wt as emitNamespaceProvisionDdl, Tt as emitNamespacedSchemaSql, Ct as emitSchemaSql, $n as engineFromVersion, P as fingerprintSchema, ye as fnv1a64, ba as formatBranchRehearsal, Xt as formatReactiveTriggerDrift, Wi as ignoreTablesFromEnv, Qn as introspectSchema, ir as isAlreadySatisfied, c as isFileMigration, Sa as isRawSqlFragment, kt as isReRunSafeDdl, Pn as mapPgType, g as migration, be as migrationLockKeyForSchema, T as migrationLockNameForSchema, Yr as mysqlIndexPrefixFor, Xe as notifyFunctionName, M as numericIdSql, Nn as parseEnumCheck, aa as pendingFileMigrationIds, Mn as planMigrations, Rt as provisionTenantNamespace, Ye as reactiveTriggerName, mt as reactiveTriggerRepairSql, zi as recordUpToDate, _a as rehearseMigrationOnBranch, ha as rehearsedOperation, Me as releaseMigrationLock, Mr as renderColumnMysql, Dr as renderColumnPg, he as resolveMigrationLockSchema, U as resolveMysqlEngine, ca as rollbackFileBasedMigration, fa as rollingDeployUnsafeOps, oa as runFileBasedMigrations, zt as runFrameworkBootstrap, It as runMigrate, Xi as runPlannedMigrations, F as shortFingerprint, Gt as snapshotColumn, xa as sql, A as sqlType, la as squashMigrationPlans, qi as unblockLossy, Ne as withMigrationLock };
3554
+ export { O as DEFAULT_CDC_CHANNEL, f as FILE_MIGRATION_PATTERN, ia as FileMigrationLedgerError, Je as REACTIVE_TRIGGER_PREFIX, pe as VOLTRO_MIGRATION_LOCK_KEY, T as acquireMigrationLock, U as appliedAtValue, Lt as applyNamespacedSchema, Ri as applyPlan, Dt as applySchema, ha as assessRollingDeployGate, ba as branchRehearsalExitCode, Vn as chunkTables, pa as classifyRollingDeploySafety, F as declaredSnapshot, et as defaultArrayClause, $e as defaultClause, j as defaultJsonClause, $i as describeOutcome, qi as destructiveScope, Xt as detectReactiveTriggerDrift, ti as emitAddIndexMysql, Ir as emitCreateTableMysql, _r as emitDropColumnDdl, vr as emitDropColumnDdlMysql, Et as emitFrameworkBootstrapSql, wt as emitNamespaceProvisionDdl, Tt as emitNamespacedSchemaSql, Ct as emitSchemaSql, er as engineFromVersion, P as fingerprintSchema, ye as fnv1a64, Sa as formatBranchRehearsal, Zt as formatReactiveTriggerDrift, Ki as ignoreTablesFromEnv, $n as introspectSchema, ar as isAlreadySatisfied, l as isFileMigration, wa as isRawSqlFragment, kt as isReRunSafeDdl, Fn as mapPgType, _ as migration, be as migrationLockKeyForSchema, xe as migrationLockNameForSchema, Zr as mysqlIndexPrefixFor, Xe as notifyFunctionName, M as numericIdSql, Pn as parseEnumCheck, sa as pendingFileMigrationIds, Nn as planMigrations, Rt as provisionTenantNamespace, Ye as reactiveTriggerName, mt as reactiveTriggerRepairSql, Vi as recordUpToDate, ya as rehearseMigrationOnBranch, _a as rehearsedOperation, E as releaseMigrationLock, Pr as renderColumnMysql, kr as renderColumnPg, he as resolveMigrationLockSchema, H as resolveMysqlEngine, ua as rollbackFileBasedMigration, ma as rollingDeployUnsafeOps, ca as runFileBasedMigrations, zt as runFrameworkBootstrap, It as runMigrate, Qi as runPlannedMigrations, Gt as shortFingerprint, Kt as snapshotColumn, Ca as sql, A as sqlType, da as squashMigrationPlans, Yi as unblockLossy, Ne as withMigrationLock };