From f1b8268ad2bd66ce7bf1cf7ed2bf72005045e1d2 Mon Sep 17 00:00:00 2001 From: Aaron Boodman Date: Sat, 17 Jan 2026 13:43:18 -1000 Subject: [PATCH] chore: fix some outdated links --- src/relations.ts | 2 +- src/tables.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/relations.ts b/src/relations.ts index e488fce..d7ff5db 100644 --- a/src/relations.ts +++ b/src/relations.ts @@ -328,7 +328,7 @@ const drizzleZeroConfig = < * ```ts * { suppressDefaultsWarning: true } * ``` - * @see https://github.com/rocicorp/drizzle-zero/issues/197 + * @see https://bugs.rocicorp.dev/p/zero/issue/3465 */ readonly suppressDefaultsWarning?: boolean; }, diff --git a/src/tables.ts b/src/tables.ts index af8d37c..69d2216 100644 --- a/src/tables.ts +++ b/src/tables.ts @@ -320,7 +320,7 @@ const createZeroTableBuilder = < warnedServerDefaults.add(warningKey); console.warn( - `⚠️ drizzle-zero: Column ${actualTableName}.${resolvedColumnName} uses a database default that the Zero client will not be able to use. This probably won't work the way you expect. Set the value with mutators instead. See: https://github.com/rocicorp/drizzle-zero/issues/197`, + `⚠️ drizzle-zero: Column ${actualTableName}.${resolvedColumnName} uses a database default that the Zero client will not be able to use. This probably won't work the way you expect. Set the value with mutators instead. See: https://bugs.rocicorp.dev/p/zero/issue/3465`, ); } }