Files
@ 4e429252f3ee
Branch filter:
Location: kallithea/rhodecode/lib/dbmigrate/versions/014_version_1_7_1.py - annotation
4e429252f3ee
1.1 KiB
text/x-python
Don't use -p flag together with -s in git calls. Latest
git version changes behaviour of such call changing the output.
In all the calls where -p -s was used we're only interested in
list of changesets and not the diff.
git version changes behaviour of such call changing the output.
In all the calls where -p -s was used we're only interested in
list of changesets and not the diff.
3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d 3cb5a35a319d | import logging
import datetime
from sqlalchemy import *
from sqlalchemy.exc import DatabaseError
from sqlalchemy.orm import relation, backref, class_mapper, joinedload
from sqlalchemy.orm.session import Session
from sqlalchemy.ext.declarative import declarative_base
from rhodecode.lib.dbmigrate.migrate import *
from rhodecode.lib.dbmigrate.migrate.changeset import *
from rhodecode.model.meta import Base
from rhodecode.model import meta
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)
#==========================================================================
# Gist
#==========================================================================
from rhodecode.lib.dbmigrate.schema.db_1_7_0 import Gist
tbl = Gist.__table__
user_id = tbl.columns.gist_expires
user_id.alter(type=Float(53))
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
|