diff options
Diffstat (limited to 'maintenance/users.sql')
-rw-r--r-- | maintenance/users.sql | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/maintenance/users.sql b/maintenance/users.sql deleted file mode 100644 index 1db32ae2..00000000 --- a/maintenance/users.sql +++ /dev/null @@ -1,12 +0,0 @@ --- SQL script to create required database users with proper --- access rights. This is run from the installation script --- which replaces the password variables with their values --- from local settings. --- - -GRANT ALL PRIVILEGES ON `{$wgDBname}`.* - TO '{$wgDBuser}'@'%' IDENTIFIED BY '{$wgDBpassword}'; -GRANT ALL PRIVILEGES ON `{$wgDBname}`.* - TO '{$wgDBuser}'@localhost IDENTIFIED BY '{$wgDBpassword}'; -GRANT ALL PRIVILEGES ON `{$wgDBname}`.* - TO '{$wgDBuser}'@localhost.localdomain IDENTIFIED BY '{$wgDBpassword}'; |