""" 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; """), ]