sipher/supabase/sql_snippets/User and Message Indexes.sql
Nixyi 8b27c6b140 Stable Release (I think)
Added all SQL scripts by using a python script to fetch them.

Also added a "About" page and a skeleton to the chat page.

Fixed the register function that was not setting the public_key on the database
2024-12-18 16:08:06 -03:00

1 line
No EOL
263 B
SQL

CREATE INDEX idx_users_suuid ON users (suuid);
CREATE INDEX idx_users_indexable ON users (indexable) WHERE indexable = true;
CREATE INDEX idx_thread_participants_user ON thread_participants (user_uuid);
CREATE INDEX idx_messages_thread ON messages (thread_id);