diff --git a/pages/i/world/[id].vue b/pages/i/world/[id].vue
index 0119727..3e228fe 100644
--- a/pages/i/world/[id].vue
+++ b/pages/i/world/[id].vue
@@ -1,13 +1,16 @@
diff --git a/supabase/migrations/202401_init.sql b/supabase/migrations/202401_init.sql
index dcdfcad..746cf05 100644
--- a/supabase/migrations/202401_init.sql
+++ b/supabase/migrations/202401_init.sql
@@ -160,6 +160,9 @@ alter table public.calendar_events enable row level security;
alter table public.calendar_event_categories enable row level security;
alter table public.calendar_event_categories_links enable row level security;
+-- Add realtime
+alter publication supabase_realtime add table calendars;
+
-- User policies
create policy "Allow logged-in read access" on public.users for select using ( auth.role() = 'authenticated' );
create policy "Allow individual insert access" on public.users for insert with check ( auth.uid() = id );