10 lines
183 B
Python
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;""")]
|