# HG changeset patch # User Marcin Kuzminski # Date 2011-02-11 01:28:21 # Node ID 3c80eb712a78de3c5480e658c2422af64f402002 # Parent bbd499c7b55eb4f3698c024531e99d692e25397e uncommented migrate tables, docfix diff --git a/docs/usage/general.rst b/docs/usage/general.rst --- a/docs/usage/general.rst +++ b/docs/usage/general.rst @@ -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 diff --git a/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py b/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py --- a/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py +++ b/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py @@ -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`