kemono2/db/migrations/20240203_00_er342-add-commenter-name.py
2024-07-04 22:08:17 +02:00

17 lines
299 B
Python

"""
add commenter name to
"""
from yoyo import step
__depends__ = {'20240128_00_ANI72-add-resuming_at-to-jobs'}
steps = [
step("""
ALTER TABLE public."comments" ADD COLUMN commenter_name text;
"""),
step("""
ALTER TABLE public."comments_revisions" ADD COLUMN commenter_name text;
"""),
]