changeset 1026:3c80eb712a78 beta

uncommented migrate tables, docfix
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 11 Feb 2011 01:28:21 +0100
parents bbd499c7b55e
children 6ba61c252ee4
files docs/usage/general.rst rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py
diffstat 2 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/docs/usage/general.rst	Fri Feb 11 01:21:16 2011 +0100
+++ b/docs/usage/general.rst	Fri Feb 11 01:28:21 2011 +0100
@@ -18,7 +18,7 @@
 ++++++++++++++++++++++++++++++++++
 
 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
 
--- a/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py	Fri Feb 11 01:21:16 2011 +0100
+++ b/rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py	Fri Feb 11 01:28:21 2011 +0100
@@ -22,20 +22,20 @@
     #==========================================================================
     # 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`