kemono2/db/migrations/20231110_00_MAC34-add-poll-to-revisions-table.py
2024-07-04 21:57:05 +02:00

10 lines
183 B
Python

"""
Add poll to posts
"""
from yoyo import step
__depends__ = {"20231110_00_BENL23-add-poll-to-post-table"}
steps = [step("""ALTER TABLE revisions ADD COLUMN poll jsonb NULL;""")]