comparison rhodecode/lib/dbmigrate/versions/003_version_1_2_0.py @ 1026:3c80eb712a78 beta

uncommented migrate tables, docfix
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 11 Feb 2011 01:28:21 +0100
parents e7478ac19f9f
children 07fcf1683503
comparison
equal deleted inserted replaced
1025:bbd499c7b55e 1026:3c80eb712a78
20 """ 20 """
21 21
22 #========================================================================== 22 #==========================================================================
23 # Add table `groups`` 23 # Add table `groups``
24 #========================================================================== 24 #==========================================================================
25 # from rhodecode.model.db import Group 25 from rhodecode.model.db import Group
26 # Group().__table__.create() 26 Group().__table__.create()
27 27
28 #========================================================================== 28 #==========================================================================
29 # Add table `group_to_perm` 29 # Add table `group_to_perm`
30 #========================================================================== 30 #==========================================================================
31 # from rhodecode.model.db import GroupToPerm 31 from rhodecode.model.db import GroupToPerm
32 # GroupToPerm().__table__.create() 32 GroupToPerm().__table__.create()
33 33
34 #========================================================================== 34 #==========================================================================
35 # Add table `users_groups` 35 # Add table `users_groups`
36 #========================================================================== 36 #==========================================================================
37 # from rhodecode.model.db import UsersGroup 37 from rhodecode.model.db import UsersGroup
38 # UsersGroup().__table__.create() 38 UsersGroup().__table__.create()
39 39
40 #========================================================================== 40 #==========================================================================
41 # Add table `users_groups_members` 41 # Add table `users_groups_members`
42 #========================================================================== 42 #==========================================================================
43 from rhodecode.model.db import UsersGroupMember 43 from rhodecode.model.db import UsersGroupMember