12 lines
252 B
Python
12 lines
252 B
Python
|
"""
|
||
|
Add table complete_imports
|
||
|
"""
|
||
|
|
||
|
from yoyo import step
|
||
|
|
||
|
__depends__ = {"20230903_00_CHN7so-remake_fanbox_newsletter"}
|
||
|
|
||
|
steps = [
|
||
|
step("""CREATE INDEX IF NOT EXISTS posts_user_published_id_idx ON posts USING btree ("user", published, id);"""),
|
||
|
]
|