Skip to content
Snippets Groups Projects
Commit e4cbe264 authored by Frédéric Mangano-Tarumi's avatar Frédéric Mangano-Tarumi Committed by Lukas Fleischer
Browse files

Create an initial Alembic migration


This way the database will get stamped, and Git will create the
`versions` directory without which Alembic won’t work.

Signed-off-by: default avatarLukas Fleischer <lfleischer@archlinux.org>
parent a8a1f74a
No related branches found
No related tags found
No related merge requests found
"""initial revision
Revision ID: f47cad5d6d03
Revises:
Create Date: 2020-02-23 13:23:32.331396
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'f47cad5d6d03'
down_revision = None
branch_labels = None
depends_on = None
def upgrade():
pass
def downgrade():
pass
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment