From aab46d7ea6cd8d503e2790df65edb123bf25fc12 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 15 Jul 2003 12:26:38 +0000 Subject: [PATCH] bug 771464 --- scripts/create_tables.sql | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/create_tables.sql b/scripts/create_tables.sql index 0b060e9b5..fc00d9444 100644 --- a/scripts/create_tables.sql +++ b/scripts/create_tables.sql @@ -3,7 +3,7 @@ -- SQL Commands to set up the pmadb as described in # -- Documentation.txt. # -- # --- This script expects the user pma to allready be # +-- This script expects the user pma to already be # -- existing. (if we would put a line here to create him # -- too many users might just use this script and end # -- up with having the same password for the controluser) # @@ -21,7 +21,8 @@ DROP DATABASE IF EXISTS `phpmyadmin`; CREATE DATABASE IF NOT EXISTS `phpmyadmin`; -USE `phpmyadmin`; +-- (backquotes are not supported in USE) +USE phpmyadmin; GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO 'pma'@localhost;