From d3e1ccdc9ee0c323ee2f55c20b05761fe1b22790 Mon Sep 17 00:00:00 2001 From: Xetera Date: Tue, 20 Jan 2026 18:52:29 +0300 Subject: [PATCH] fix: make collation in CompositeAttribute optional --- src/sync/schema_differ.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sync/schema_differ.ts b/src/sync/schema_differ.ts index 3e4b5a8..d8aed11 100644 --- a/src/sync/schema_differ.ts +++ b/src/sync/schema_differ.ts @@ -174,7 +174,7 @@ export const FullSchemaCompositeAttribute = z.object({ type: z.literal("compositeAttribute"), name: Identifier, attributeType: z.string(), - collation: Identifier, + collation: Identifier.optional(), }); export type FullSchemaCompositeAttribute = z.infer<