AppFlowy-Cloud/migrations/20240910100000_af_collab_embeddings_indices.sql
2024-09-10 10:51:56 +08:00

6 lines
242 B
SQL

DO $$
BEGIN
CREATE INDEX IF NOT EXISTS af_collab_embeddings_oid_idx ON public.af_collab_embeddings (oid);
EXCEPTION WHEN others THEN
RAISE NOTICE 'could not create index on af_collab_embeddings(oid), ignoring this migration';
END $$;