16 lines
300 B
Python
16 lines
300 B
Python
|
"""
|
||
|
Add table complete_imports
|
||
|
"""
|
||
|
|
||
|
from yoyo import step
|
||
|
|
||
|
__depends__ = {"20230827_00_USDf5-add-index-to-revisions"}
|
||
|
|
||
|
steps = [
|
||
|
step(
|
||
|
"""
|
||
|
CREATE INDEX introductory_messages_user_id_added_idx ON public.introductory_messages USING btree (user_id , added);
|
||
|
"""
|
||
|
),
|
||
|
]
|