Changes between Version 36 and Version 37 of BackwardsIncompatibleChanges


Ignore:
Timestamp:
Nov 21, 2005, 4:44:52 AM (19 years ago)
Author:
Nebojša Đorđević - nesh <nesh@…>
Comment:

added MySQL code

Legend:

Unmodified
Added
Removed
Modified
  • BackwardsIncompatibleChanges

    v36 v37  
    315315Execute the following SQL to restore auth functionality:
    316316
     317 * Postgres
    317318{{{
    318319BEGIN;
     
    323324COMMIT;
    324325}}}
     326
     327 * MySQL
     328{{{
     329BEGIN;
     330ALTER TABLE `auth_users` CHANGE `password_md5` `password` VARCHAR(128) NOT NULL
     331COMMIT;
     332}}}
Back to Top