Changeset - 3c80eb712a78
[Not reviewed]
beta
0 2 0
Marcin Kuzminski - 15 years ago 2011-02-11 01:28:21
marcin@python-works.com
uncommented migrate tables, docfix
2 files changed with 7 insertions and 7 deletions:
0 comments (0 inline, 0 general)
docs/usage/general.rst
Show inline comments
 
@@ -15,13 +15,13 @@ delete a repository You can easy restore
 
from the repository name, and internal repository storage (.hg/.git)
 

	
 
Follow current branch in file view
 
++++++++++++++++++++++++++++++++++
 

	
 
In file view when this checkbox is checked the << and >> arrows will jump
 
to changesets withing the same branch currently viewing. So for example
 
to changesets within the same branch currently viewing. So for example
 
if someone is viewing files at 'beta' branch and marks `follow current branch`
 
checkbox the << and >> buttons will only show him revisions for 'beta' branch
 

	
 

	
 
Compare view from changelog
 
+++++++++++++++++++++++++++
rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py
Show inline comments
 
@@ -19,26 +19,26 @@ def upgrade(migrate_engine):
 
    Don't create your own engine; bind migrate_engine to your metadata
 
    """
 

	
 
    #==========================================================================
 
    # Add table `groups``
 
    #==========================================================================
 
#    from rhodecode.model.db import Group
 
#    Group().__table__.create()
 
    from rhodecode.model.db import Group
 
    Group().__table__.create()
 

	
 
    #==========================================================================
 
    # Add table `group_to_perm`
 
    #==========================================================================
 
#    from rhodecode.model.db import GroupToPerm
 
#    GroupToPerm().__table__.create()
 
    from rhodecode.model.db import GroupToPerm
 
    GroupToPerm().__table__.create()
 

	
 
    #==========================================================================
 
    # Add table `users_groups`
 
    #==========================================================================
 
#    from rhodecode.model.db import UsersGroup
 
#    UsersGroup().__table__.create()
 
    from rhodecode.model.db import UsersGroup
 
    UsersGroup().__table__.create()
 

	
 
    #==========================================================================
 
    # Add table `users_groups_members`
 
    #==========================================================================
 
    from rhodecode.model.db import UsersGroupMember
 
    UsersGroupMember().__table__.create()
0 comments (0 inline, 0 general)