kemono2/db/migrations/20240202_00_JGL52-add-buy-price-to-public-posts.py

14 lines
204 B
Python
Raw Permalink Normal View History

2024-07-04 22:08:17 +02:00
"""
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;
"""),
]