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
1 line
No EOL
249 B
SQL
1 line
No EOL
249 B
SQL
-- First, verify realtime is enabled
|
|
|
|
SELECT *
|
|
FROM pg_publication_tables
|
|
|
|
WHERE pubname = 'supabase_realtime'
|
|
|
|
AND tablename = 'messages';
|
|
|
|
|
|
-- Check REPLICA IDENTITY
|
|
|
|
SELECT relname, relreplident
|
|
|
|
FROM pg_class
|
|
|
|
WHERE oid = 'messages'::regclass; |