mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-08-02 03:11:45 -04:00
6 lines
237 B
SQL
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); |