1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
"""ArchivaLook plugin initial migration
Revision ID: b10b5f822789
Revises: 52bf0ccbedc1
Create Date: 2016-03-12 23:37:51.551856
"""
# revision identifiers, used by Alembic.
revision = 'b10b5f822789'
down_revision = '52bf0ccbedc1'
branch_labels = ('archivalook_plugin',)
depends_on = None
from alembic import op
import sqlalchemy as sa
def upgrade():
op.create_table(
'archivalook__featured_media',
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('media_entry_id', sa.Integer(), nullable=False),
sa.Column('display_type', sa.Unicode(), nullable=False),
sa.Column('order', sa.Integer(), nullable=False),
sa.ForeignKeyConstraint(['media_entry_id'],
['core__media_entries.id']),
sa.PrimaryKeyConstraint('id'))
def downgrade():
op.drop_table('archivalook__featured_media')
|