Changes between Version 144 and Version 145 of RemovingTheMagic
- Timestamp:
- May 10, 2006, 3:49:36 AM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RemovingTheMagic
v144 v145 224 224 UPDATE django_content_type SET name='group' WHERE module='groups'; 225 225 UPDATE django_content_type SET name='user' WHERE module='users'; 226 }}} 227 228 '''User 'Graham King' noted that he thinks both the original and corrected last 2 UPDATE statements have typos, and the correct SQL is:''' 229 {{{ 230 UPDATE django_content_type SET name='group' WHERE model='groups'; 231 UPDATE django_content_type SET name='user' WHERE model='users'; 226 232 }}} 227 233