From b0a3bfd3bf609f64132e82241eddb7e3917cf4ad Mon Sep 17 00:00:00 2001 From: 0xRider <134025586+0xRider@users.noreply.github.com> Date: Wed, 1 Jan 2025 14:00:47 -0800 Subject: [PATCH] Update schema.sql There is an extra semicolon that causes a syntax error when trying to upload the schema to supabase. --- packages/adapter-supabase/schema.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/adapter-supabase/schema.sql b/packages/adapter-supabase/schema.sql index fd7ec2287d..25eb0dcae8 100644 --- a/packages/adapter-supabase/schema.sql +++ b/packages/adapter-supabase/schema.sql @@ -97,7 +97,7 @@ CREATE VIEW memories AS UNION ALL SELECT * FROM memories_1024 UNION ALL - SELECT * FROM memories_768; + SELECT * FROM memories_768 UNION ALL SELECT * FROM memories_384; @@ -163,4 +163,4 @@ CREATE INDEX idx_participants_user ON participants("userId"); CREATE INDEX idx_participants_room ON participants("roomId"); CREATE INDEX idx_relationships_users ON relationships("userA", "userB"); -COMMIT; \ No newline at end of file +COMMIT;