zuul/zuul/driver/sql/alembic/versions/19d3a3ebfe1d_change_patchset_to_string.py
Tobias Henkel 52af4bb52a Really change patchset column to string
The previous change I26ff56159c2710af1515955d27bf4e9ebfcf76e9 had a
small bug which rendered it basically a noop. Further it missed some 
important parts and test changes.

Change-Id: I6cfb8a6af05e589140c2f7c8b1d7228f6d4d8fcb
2018-01-10 20:18:46 +00:00

30 lines
611 B
Python

"""Change patchset to string
Revision ID: 19d3a3ebfe1d
Revises: cfc0dc45f341
Create Date: 2018-01-10 07:42:16.546751
"""
# revision identifiers, used by Alembic.
revision = '19d3a3ebfe1d'
down_revision = 'cfc0dc45f341'
branch_labels = None
depends_on = None
from alembic import op
import sqlalchemy as sa
BUILDSET_TABLE = 'zuul_buildset'
def upgrade(table_prefix=''):
op.alter_column(table_prefix + BUILDSET_TABLE,
'patchset',
type_=sa.String(255),
existing_nullable=True)
def downgrade():
raise Exception("Downgrades not supported")