Files
@ bf5c2c75c976
Branch filter:
Location: kallithea/rhodecode/lib/dbmigrate/versions/014_version_1_7_1.py - annotation
bf5c2c75c976
1.1 KiB
text/x-python
fixes issue #856 file upload >1000 bytes on windows throws exception.
The returned object is a true file object on POSIX platforms.
On other platforms, it is a file-like object whose `file` attribute is the
underlying true file object. We check if such object has a file attribute
which is missing on POSIX platform
The returned object is a true file object on POSIX platforms.
On other platforms, it is a file-like object whose `file` attribute is the
underlying true file object. We check if such object has a file attribute
which is missing on POSIX platform
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
|