From 781bf239b483601929cffab7838020f6c484806b Mon Sep 17 00:00:00 2001 From: hiperman Date: Wed, 25 Feb 2026 01:09:57 -0500 Subject: [PATCH] move triplit schema to --- triplit/schema.ts | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 triplit/schema.ts diff --git a/triplit/schema.ts b/triplit/schema.ts deleted file mode 100644 index 716a6a1..0000000 --- a/triplit/schema.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { Schema as S } from "@triplit/client"; - -/** - * Define your schema here. After: - * - Pass your schema to your Triplit client - * - Push your schema to your Triplit server with 'triplit schema push' - * - * For more information about schemas, see the docs: https://www.triplit.dev/docs/schemas - */ -export const schema = S.Collections({ - // todos: { - // schema: S.Schema({ - // id: S.Id(), - // title: S.String(), - // description: S.String(), - // }), - // }, -});