You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Drop old index that only covered 'experience' field
7
+
execute"DROP INDEX IF EXISTS users_lower_idx"
8
+
# Create new index covering entire linkedin_meta JSON
9
+
execute"CREATE INDEX users_linkedin_meta_text_idx ON users USING gin(lower(linkedin_meta::text) gin_trgm_ops)"
10
+
end
11
+
12
+
defdowndo
13
+
execute"DROP INDEX IF EXISTS users_linkedin_meta_text_idx"
14
+
# Recreate old index
15
+
execute"CREATE INDEX users_lower_idx ON users USING gin(lower(linkedin_meta ->> 'experience') gin_trgm_ops) WHERE linkedin_meta ->> 'experience' IS NOT NULL"
0 commit comments