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`, ); } }