This commit is contained in:
Alexander M. Turek
2002-11-15 09:08:38 +00:00
parent f41981ba82
commit f9687321fc
2 changed files with 8 additions and 3 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2002-11-15 Alexander M. Turek <rabus@users.sourceforge.net>
* scripts/create_tables.sql: Added a 'USE' command after 'CREATE DATABASE'.
2002-11-14 Marc Delisle <lem9@users.sourceforge.net> 2002-11-14 Marc Delisle <lem9@users.sourceforge.net>
* sql.php3: stripslashes issues (with LOAD DATA) * sql.php3: stripslashes issues (with LOAD DATA)
* libraries/display_tbl.lib.php3: could not Edit or Delete when only * libraries/display_tbl.lib.php3: could not Edit or Delete when only

View File

@@ -13,9 +13,11 @@
# # # #
######################################################### #########################################################
CREATE DATABASE phpmyadmin; CREATE DATABASE `phpmyadmin`;
GRANT SELECT,INSERT,DELETE ON phpmyadmin.* to USE `phpmyadmin`;
GRANT SELECT, INSERT, DELETE ON `phpmyadmin`.* TO
'pma'@localhost; 'pma'@localhost;
CREATE TABLE `PMA_bookmark` ( CREATE TABLE `PMA_bookmark` (
@@ -70,4 +72,4 @@ CREATE TABLE `PMA_column_comments` (
comment varchar(255) NOT NULL default '', comment varchar(255) NOT NULL default '',
PRIMARY KEY (id), PRIMARY KEY (id),
UNIQUE KEY db_name (db_name, table_name, column_name) UNIQUE KEY db_name (db_name, table_name, column_name)
) TYPE=MyISAM COMMENT='Comments for Columns'; ) TYPE=MyISAM COMMENT='Comments for Columns';