Privileges to MySQL using Drupal
This is the privileges to MySQL database when using Drupal.
- SELECT
- INSERT
- UPDATE
- DELETE
- CREATE
- DROP
- INDEX
- ALTER
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password'; Source: http://drupal.org/getting-started/6/install/create-database
Knowledge keywords:
