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