Changes between Version 102 and Version 103 of RemovingTheMagic


Ignore:
Timestamp:
Apr 15, 2006, 3:50:16 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

Added auth_permission table stuff to SQL changes

Legend:

Unmodified
Added
Removed
Modified
  • RemovingTheMagic

    v102 v103  
    6666ALTER TABLE django_content_type rename package to app_label;
    6767ALTER TABLE django_content_type rename python_module_name to model;
     68ALTER TABLE auth_permission ADD COLUMN content_type_id INTEGER;
    6869}}}
    6970
     
    140141ALTER TABLE django_site ALTER COLUMN id SET DEFAULT nextval('public.django_site_id_seq'::text);
    141142
    142 ALTER TABLE django_content_type rename package to app_label;
    143143ALTER TABLE django_content_type rename python_module_name to model;
     144
     145ALTER TABLE auth_permission ADD COLUMN content_type_id INTEGER references django_content_type(id);
    144146
    145147COMMIT;
Back to Top