Files
Compass/backend/supabase/migrations/20251110_add_languages_to_profiles.sql
2026-02-17 12:10:17 +01:00

6 lines
237 B
SQL

-- Add languages column to profiles table
ALTER TABLE profiles
ADD COLUMN IF NOT EXISTS languages TEXT[] null;
-- Create GIN index for array operations
CREATE INDEX IF NOT EXISTS idx_profiles_languages ON profiles USING GIN (languages);