zed/crates/collab/migrations/20240129193601_fix_parent_path_index.sql

5 lines
159 B
MySQL
Raw Normal View History

-- Add migration script here
DROP INDEX index_channels_on_parent_path;
CREATE INDEX index_channels_on_parent_path ON channels (parent_path text_pattern_ops);