Changes between Version 144 and Version 145 of RemovingTheMagic


Ignore:
Timestamp:
May 10, 2006, 3:49:36 AM (18 years ago)
Author:
graham@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • RemovingTheMagic

    v144 v145  
    224224UPDATE django_content_type SET name='group' WHERE module='groups';
    225225UPDATE 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{{{
     230UPDATE django_content_type SET name='group' WHERE model='groups';
     231UPDATE django_content_type SET name='user' WHERE model='users';
    226232}}}
    227233
Back to Top