14 lines
295 B
Python
14 lines
295 B
Python
"""
|
|
Some index that was added by hand before
|
|
"""
|
|
|
|
from yoyo import step
|
|
|
|
__depends__ = {"20230930_00_TNd34a-add-created-timestamp-to-favs"}
|
|
|
|
steps = [
|
|
step(
|
|
"CREATE INDEX IF NOT EXISTS discord_posts_server_channel_idx ON public.discord_posts USING btree (server, channel);"
|
|
),
|
|
]
|