Script 3c3cce7a5fe0_add_copr_desc_and_instruct_py
[hide private]
[frames] | no frames]

Source Code for Script script-3c3cce7a5fe0_add_copr_desc_and_instruct_py

 1  """empty message 
 2   
 3  Revision ID: 3c3cce7a5fe0 
 4  Revises: 2fa80e062525 
 5  Create Date: 2013-01-22 09:42:39.037642 
 6   
 7  """ 
 8   
 9  # revision identifiers, used by Alembic. 
10  revision = '3c3cce7a5fe0' 
11  down_revision = '2fa80e062525' 
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('copr', sa.Column('description', sa.Text(), nullable=True)) 20 op.add_column('copr', sa.Column('instructions', 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('copr', 'instructions') 27 op.drop_column('copr', 'description')
28 ### end Alembic commands ### 29