Skip to content

Commit b0a3bfd

Browse files
authored
Update schema.sql
There is an extra semicolon that causes a syntax error when trying to upload the schema to supabase.
1 parent 961e342 commit b0a3bfd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/adapter-supabase/schema.sql

+2-2
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ CREATE VIEW memories AS
9797
UNION ALL
9898
SELECT * FROM memories_1024
9999
UNION ALL
100-
SELECT * FROM memories_768;
100+
SELECT * FROM memories_768
101101
UNION ALL
102102
SELECT * FROM memories_384;
103103

@@ -163,4 +163,4 @@ CREATE INDEX idx_participants_user ON participants("userId");
163163
CREATE INDEX idx_participants_room ON participants("roomId");
164164
CREATE INDEX idx_relationships_users ON relationships("userA", "userB");
165165

166-
COMMIT;
166+
COMMIT;

0 commit comments

Comments
 (0)