mirror of
https://git.0x0.st/mia/0x0.git
synced 2024-11-08 11:18:59 -05:00
43 lines
1.1 KiB
Python
43 lines
1.1 KiB
Python
|
"""empty message
|
||
|
|
||
|
Revision ID: 0cd36ecdd937
|
||
|
Revises: None
|
||
|
Create Date: 2016-11-01 05:25:42.691768
|
||
|
|
||
|
"""
|
||
|
|
||
|
# revision identifiers, used by Alembic.
|
||
|
revision = '0cd36ecdd937'
|
||
|
down_revision = None
|
||
|
|
||
|
from alembic import op
|
||
|
import sqlalchemy as sa
|
||
|
|
||
|
|
||
|
def upgrade():
|
||
|
### commands auto generated by Alembic - please adjust! ###
|
||
|
op.create_table('URL',
|
||
|
sa.Column('id', sa.Integer(), nullable=False),
|
||
|
sa.Column('url', sa.UnicodeText(), nullable=True),
|
||
|
sa.PrimaryKeyConstraint('id'),
|
||
|
sa.UniqueConstraint('url')
|
||
|
)
|
||
|
op.create_table('file',
|
||
|
sa.Column('id', sa.Integer(), nullable=False),
|
||
|
sa.Column('sha256', sa.String(), nullable=True),
|
||
|
sa.Column('ext', sa.UnicodeText(), nullable=True),
|
||
|
sa.Column('mime', sa.UnicodeText(), nullable=True),
|
||
|
sa.Column('addr', sa.UnicodeText(), nullable=True),
|
||
|
sa.Column('removed', sa.Boolean(), nullable=True),
|
||
|
sa.PrimaryKeyConstraint('id'),
|
||
|
sa.UniqueConstraint('sha256')
|
||
|
)
|
||
|
### end Alembic commands ###
|
||
|
|
||
|
|
||
|
def downgrade():
|
||
|
### commands auto generated by Alembic - please adjust! ###
|
||
|
op.drop_table('file')
|
||
|
op.drop_table('URL')
|
||
|
### end Alembic commands ###
|