kemono2/db/migrations/20240211_00_asb39-index-for-remote-in-file_server_relationships.py
2024-07-04 22:08:17 +02:00

10 lines
263 B
Python

from yoyo import step
__depends__ = {'20240210_00_gto81-add-table-for-tracking-forced-reimports'}
steps = [
step("""
CREATE INDEX IF NOT EXISTS file_server_relationships_remote_path_idx ON public.file_server_relationships USING btree (remote_path);
"""),
]