Skip to content

Commit

Permalink
Update seed.sql
Browse files Browse the repository at this point in the history
Added roomId value.
  • Loading branch information
antman1p authored Jan 10, 2025
1 parent c339a0b commit 68b5368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/adapter-supabase/seed.sql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
INSERT INTO public.accounts (id, name, email, "avatarUrl", details) VALUES ('00000000-0000-0000-0000-000000000000', 'Default Agent', '[email protected]', '', '{}');
INSERT INTO public.rooms (id, "createdAt") VALUES ('00000000-0000-0000-0000-000000000000', NOW());
INSERT INTO public.participants (id, "createdAt", "userId", "roomId", "userState", last_messsage_read) VALUES ('00000000-0000-0000-0000-000000000000', NOW(), 'Default Agent', NULL, NULL);
INSERT INTO public.participants (id, "createdAt", "userId", "roomId", "userState", last_messsage_read) VALUES ('00000000-0000-0000-0000-000000000000', NOW(), 'Default Agent', '00000000-0000-0000-0000-000000000000', NULL, NULL);

0 comments on commit 68b5368

Please sign in to comment.