I'd like to grant the minimum necessary privileges for an existing wiki being moved to a new server. Which is best of the following?
- Manual:Installing_MediaWiki#Create_a_database: GRANT ALL
- Manual:Running_MediaWiki_on_Debian_or_Ubuntu#Get_latest_MediaWiki: GRANT ALL
- Manual:Restoring_a_wiki_from_backup#Re-create_the_database,_user_and_permissions: GRANT SELECT, UPDATE, INSERT, DELETE, ALTER, CREATE, INDEX, DROP, LOCK TABLES, USAGE
- Manual:Config_script#Using_the_config_script: "If you have superuser account of DB Server and will be using it on this form page then simply fill the db username that you would like to be created for your wiki. Otherwise, create the db user and ensure that the user has SELECT, INSERT, UPDATE, and DELETE permissions on the MediaWiki database. For installation the user must also have CREATE and INDEX permissions. It is strongly suggested that you do not use a superuser account since the user password is stored in plain text."
Thanks.