kemono2/db/migrations/20240128_00_ANI72-add-resuming_at-to-jobs.py

15 lines
213 B
Python
Raw Permalink Normal View History

2024-07-04 22:08:17 +02:00
"""
Table for import jobs
"""
from yoyo import step
__depends__ = {'20231119_00_ASHrR6-fix-revisions-table-to-match-tags-type'}
steps = [
step("""
ALTER TABLE jobs
ADD COLUMN resuming_at TIMESTAMP;
"""),
]