Files
@ 21f7b699d467
Branch filter:
Location: kallithea/kallithea/alembic/script.py.mako - annotation
21f7b699d467
1.3 KiB
text/plain
py3: automatic migration with 2to3 -f xrange
520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 520d39490a06 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 520d39490a06 520d39490a06 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 7894a440e134 | # -*- coding: utf-8 -*-
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
## Template for creating new Alembic migration scripts.
"""${message}
Revision ID: ${up_revision}
Revises: ${down_revision | comma,n}
Create Date: ${create_date}
"""
# The following opaque hexadecimal identifiers ("revisions") are used
# by Alembic to track this migration script and its relations to others.
revision = ${repr(up_revision)}
down_revision = ${repr(down_revision)}
branch_labels = ${repr(branch_labels)}
depends_on = ${repr(depends_on)}
from alembic import op
import sqlalchemy as sa
${imports if imports else ""}
def upgrade():
${upgrades if upgrades else "pass"}
def downgrade():
${downgrades if downgrades else "pass"}
|