kemono2/db/migrations/20231110_00_BENL23-add-poll-to-post-table.py

10 lines
181 B
Python
Raw Normal View History

2024-07-04 22:08:17 +02:00
"""
Add poll to posts
"""
from yoyo import step
__depends__ = {"20230124_01_aT7eI-add-welcome-message-table"}
steps = [step("""ALTER TABLE posts ADD COLUMN poll jsonb NULL;""")]