mirror of
https://github.com/AppFlowy-IO/AppFlowy-Cloud.git
synced 2025-04-19 03:24:42 -04:00
6 lines
242 B
SQL
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 $$;
|