10 lines
263 B
Python
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);
|
||
|
"""),
|
||
|
]
|