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
 
@@ -18,7 +18,7 @@ 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
 

	
rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py
Show inline comments
 
@@ -22,20 +22,20 @@ def upgrade(migrate_engine):
 
    #==========================================================================
 
    # 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`
0 comments (0 inline, 0 general)