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
10 revision = "3c3cce7a5fe0"
11 down_revision = "2fa80e062525"
12
13 from alembic import op
14 import sqlalchemy as sa
15
16
18
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
22
23
25
26 op.drop_column("copr", "instructions")
27 op.drop_column("copr", "description")
28
29