Changeset - b5f03c1d2153
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 14 years ago 2012-04-16 19:27:27
marcin@python-works.com
fixed migration import error
1 file changed with 1 insertions and 3 deletions:
0 comments (0 inline, 0 general)
rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py
Show inline comments
 
@@ -22,7 +22,7 @@ def upgrade(migrate_engine):
 
    #==========================================================================
 
    # Add table `groups``
 
    #==========================================================================
 
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import RepoGroup as Group
 
    from rhodecode.lib.dbmigrate.schema.db_1_2_0 import Group as Group
 
    Group().__table__.create()
 

	
 
    #==========================================================================
 
@@ -71,7 +71,6 @@ def upgrade(migrate_engine):
 
    is_ldap = Column("is_ldap", Boolean(), nullable=False, unique=None, default=False)
 
    is_ldap.drop(User().__table__)
 

	
 

	
 
    #==========================================================================
 
    # Upgrade of `repositories` table
 
    #==========================================================================
 
@@ -100,7 +99,6 @@ def upgrade(migrate_engine):
 

	
 
    group_id.create(Repository().__table__)
 

	
 

	
 
    #==========================================================================
 
    # Upgrade of `user_followings` table
 
    #==========================================================================
0 comments (0 inline, 0 general)