* added db migration for integration table, version 55 * added integrations views/templates/models * added slack integration * added h.url.current() support for pyramid only contexts * added issues extractor for commit messages * renamed repo-deleted/repo-created to repo-delete/repo-create * removed marshmallow * added serialization for events to static dicts of data * added lazy_ugettext for translation of start time string
27 lines
620 B
Python
27 lines
620 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
import logging
|
|
import sqlalchemy as sa
|
|
|
|
from alembic.migration import MigrationContext
|
|
from alembic.operations import Operations
|
|
|
|
from rhodecode.lib.dbmigrate.versions import _reset_base
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def upgrade(migrate_engine):
|
|
"""
|
|
Upgrade operations go here.
|
|
Don't create your own engine; bind migrate_engine to your metadata
|
|
"""
|
|
_reset_base(migrate_engine)
|
|
from rhodecode.lib.dbmigrate.schema import db_4_3_0_0
|
|
|
|
integrations_table = db_4_3_0_0.Integration.__table__
|
|
integrations_table.create()
|
|
|
|
|
|
def downgrade(migrate_engine):
|
|
pass
|