14 lines
204 B
Python
14 lines
204 B
Python
"""
|
|
Add buy_price to public posts
|
|
"""
|
|
|
|
from yoyo import step
|
|
|
|
__depends__ = {'20231205_00_TOS34-add-public-tables'}
|
|
|
|
steps = [
|
|
step("""
|
|
ALTER TABLE public_posts ADD COLUMN buy_price text;
|
|
"""),
|
|
]
|