kemono2/db/migrations/20240211_00_asb39-index-for-remote-in-file_server_relationships.py

10 lines
263 B
Python
Raw Normal View History

2024-07-04 21:57:05 +02:00
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);
"""),
]