diff options
Diffstat (limited to 'db/update.d/19_password_field.php')
-rw-r--r-- | db/update.d/19_password_field.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/db/update.d/19_password_field.php b/db/update.d/19_password_field.php deleted file mode 100644 index 85333f28..00000000 --- a/db/update.d/19_password_field.php +++ /dev/null @@ -1,7 +0,0 @@ -<?php -// make the Passwort column in the User table longer to store more advanced hashes with salts -$res = sql_select("DESCRIBE `User` `Passwort`"); -if ($res[0]['Type'] == 'varchar(40)') { - sql_query("ALTER TABLE `User` CHANGE `Passwort` `Passwort` VARCHAR(128) NULL"); - $applied = true; -} |