Changes between Version 27 and Version 28 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Nov 10, 2005, 10:36:34 PM (19 years ago)
Author:
Adrian Holovaty
Comment:

Formatting update

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v27 v28  
    234234==== If you don't want to use flatfiles ====
    235235
    236  * Execute the following SQL:
    237    {{{
    238    DROP TABLE flatfiles;
    239    DROP TABLE flatfiles_sites;
    240    DELETE FROM auth_permissions WHERE package = 'core' AND codename IN ('add_flatfile', 'change_flatfile', 'delete_flatfile');
    241    DELETE FROM content_types WHERE package = 'core' AND python_module_name = 'flatfiles';
    242    }}}
     236Execute the following SQL:
     237
     238{{{
     239DROP TABLE flatfiles;
     240DROP TABLE flatfiles_sites;
     241DELETE FROM auth_permissions WHERE package = 'core' AND codename IN ('add_flatfile', 'change_flatfile', 'delete_flatfile');
     242DELETE FROM content_types WHERE package = 'core' AND python_module_name = 'flatfiles';
     243}}}
    243244
    244245==== If you don't want to use redirects ====
    245246
    246  * Execute the following SQL:
    247    {{{
    248    DROP TABLE redirects;
    249    DELETE FROM auth_permissions WHERE package = 'core' AND codename IN ('add_redirect', 'change_redirect', 'delete_redirect');
    250    DELETE FROM content_types WHERE package = 'core' AND python_module_name = 'redirects';
    251    }}}
     247Execute the following SQL:
     248
     249{{{
     250DROP TABLE redirects;
     251DELETE FROM auth_permissions WHERE package = 'core' AND codename IN ('add_redirect', 'change_redirect', 'delete_redirect');
     252DELETE FROM content_types WHERE package = 'core' AND python_module_name = 'redirects';
     253}}}
    252254
    253255==== If you do want to use flatfiles and redirects ====
Back to Top