| 191 | COMMIT; |
| 192 | }}} |
| 193 | |
| 194 | === Auth_permissions case changes === |
| 195 | |
| 196 | A change checked into the MR branch on [2745] changed the verbose_names of two modules, Groups and Users to be lowercased instead of uppercased ("users" instead of "Users"). This results in the ''syncdb'' function of mangage.py to break due to the disparity in existing installations of the Magic Removal branch. In order to fix your auth_permissions table, execute these SQL statements: |
| 197 | |
| 198 | {{{ |
| 199 | BEGIN; |
| 200 | UPDATE auth_permission set name='Can add group' where |
| 201 | codename='add_group'; |
| 202 | UPDATE auth_permission set name='Can change group' where |
| 203 | codename='change_group'; |
| 204 | UPDATE auth_permission set name='Can delete group' where |
| 205 | codename='delete_group'; |
| 206 | UPDATE auth_permission set name='Can add user' where |
| 207 | codename='add_user'; |
| 208 | UPDATE auth_permission set name='Can change user' where |
| 209 | codename='change_user'; |
| 210 | UPDATE auth_permission set name='Can delete user' where |
| 211 | codename='delete_user'; |