Files
@ 269c6e0b54cc
Branch filter:
Location: kallithea/rhodecode/lib/dbmigrate/versions/006_version_1_4_0.py - annotation
269c6e0b54cc
648 B
text/x-python
Reimplemented file-browser using partial-ajax
- improves the speed of browsing of files for revision
- url push state via html5 History
- also cache the results of calls for even faster handling the content
- improves the speed of browsing of files for revision
- url push state via html5 History
- also cache the results of calls for even faster handling the content
80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 80dc21487314 | import logging
import datetime
from sqlalchemy import *
from sqlalchemy.exc import DatabaseError
from sqlalchemy.orm import relation, backref, class_mapper
from sqlalchemy.orm.session import Session
from rhodecode.lib.dbmigrate.migrate import *
from rhodecode.lib.dbmigrate.migrate.changeset import *
from rhodecode.model.meta import 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
"""
#TODO when 1.4 is ready fill it !
def downgrade(migrate_engine):
meta = MetaData()
meta.bind = migrate_engine
|