We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6926031 commit 6484ec1Copy full SHA for 6484ec1
1 file changed
packages/objectql/src/protocol.ts
@@ -1237,7 +1237,10 @@ export class ObjectStackProtocolImplementation implements ObjectStackProtocol {
1237
}
1238
1239
} catch (e: any) {
1240
- console.warn(`[Protocol] DB hydration skipped: ${e.message}`);
+ // "no such table" is expected on first run before migrations execute — not an error.
1241
+ if (!/no such table/i.test(e.message ?? '')) {
1242
+ console.warn(`[Protocol] DB hydration skipped: ${e.message}`);
1243
+ }
1244
1245
return { loaded, errors };
1246
0 commit comments