Skip to content

Commit

Permalink
fix #3549 changing creation date
Browse files Browse the repository at this point in the history
  • Loading branch information
greg gay committed Sep 25, 2008
1 parent a2d1396 commit dd07526
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/install/db/atutor_upgrade_1.6_to_1.6.1.sql
Expand Up @@ -30,7 +30,7 @@ ALTER TABLE `courses` ADD COLUMN `course_dir_name` VARCHAR(255) NOT NULL AFTER `

# Extend members.password for encrypted password
ALTER TABLE `members` MODIFY password VARCHAR(40);
UPDATE `members` SET password = SHA1(password);
UPDATE `members` SET password = SHA1(password), creation_date=creation_date, last_login=last_login;

# --------------------------------------------------------
# Table structure for table `patches`
Expand Down

0 comments on commit dd07526

Please sign in to comment.