Script 5055336e8c44_build_packages_and_s_py
[hide private]
[frames] | no frames]

Source Code for Script script-5055336e8c44_build_packages_and_s_py

 1  """build packages and subpackages 
 2   
 3  Revision ID: 5055336e8c44 
 4  Revises: 20140423001 
 5  Create Date: 2014-07-15 10:12:21.875119 
 6   
 7  """ 
 8   
 9  # revision identifiers, used by Alembic. 
10  revision = '5055336e8c44' 
11  down_revision = '20140423001' 
12   
13  from alembic import op 
14  import sqlalchemy as sa 
15   
16   
17 -def upgrade():
18 ### commands auto generated by Alembic - please adjust! ### 19 op.add_column('build', sa.Column('pkg_version', sa.Text(), nullable=True)) 20 op.add_column('build', sa.Column('built_packages', sa.Text(), nullable=True))
21 ### end Alembic commands ### 22 23
24 -def downgrade():
25 ### commands auto generated by Alembic - please adjust! ### 26 op.drop_column('build', 'built_packages') 27 op.drop_column('build', 'pkg_version')
28 ### end Alembic commands ### 29