diff options
author | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-19 19:53:51 +0000 |
---|---|---|
committer | Gábor Hojtsy <gabor@hojtsy.hu> | 2007-11-19 19:53:51 +0000 |
commit | 480a2daf4e2f73aaafefdeef616d912ea28ca7c6 (patch) | |
tree | 4c87244e910e783bd413aa769b30db5241ef544d /INSTALL.mysql.txt | |
parent | 4615c96d59927845ebcfdabe3882cc17cd60fa5d (diff) | |
download | drupal-480a2daf4e2f73aaafefdeef616d912ea28ca7c6.tar.gz drupal-480a2daf4e2f73aaafefdeef616d912ea28ca7c6.zip |
#193580 by chx: given recent improvements, Drupal does not require CREATE TEMPORARY TABLE and LOCK TABLES permissions, so do not check on install and do not advise people giving these rights
Diffstat (limited to 'INSTALL.mysql.txt')
-rw-r--r-- | INSTALL.mysql.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/INSTALL.mysql.txt b/INSTALL.mysql.txt index 781e7b26fe7..ae50ebb4061 100644 --- a/INSTALL.mysql.txt +++ b/INSTALL.mysql.txt @@ -21,8 +21,7 @@ initial database files. Next you must login and set the access database rights: Again, you will be asked for the 'username' database password. At the MySQL prompt, enter following command: - GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE - TEMPORARY TABLES, LOCK TABLES + GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password'; |