Cleaned up description, regenerated dump.
This commit is contained in:
@@ -17,6 +17,7 @@ $Source$
|
|||||||
inserting when multiple inserts after changing value (RFE #749733).
|
inserting when multiple inserts after changing value (RFE #749733).
|
||||||
* header.inc.php: Simplified title generating.
|
* header.inc.php: Simplified title generating.
|
||||||
* lang/czech: Fixed untranslated word (translation #952551).
|
* lang/czech: Fixed untranslated word (translation #952551).
|
||||||
|
* scripts/create_tables.sql: Cleaned up description, regenerated dump.
|
||||||
|
|
||||||
2004-05-12 Marc Delisle <lem9@users.sourceforge.net>
|
2004-05-12 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* db_details_structure.php: bug #951143, undefined $header_url_qry
|
* db_details_structure.php: bug #951143, undefined $header_url_qry
|
||||||
|
@@ -1,106 +1,143 @@
|
|||||||
-- ########################################################
|
-- --------------------------------------------------------
|
||||||
-- #
|
-- SQL Commands to set up the pmadb as described in
|
||||||
-- SQL Commands to set up the pmadb as described in #
|
-- Documentation.html.
|
||||||
-- Documentation.txt. #
|
--
|
||||||
-- #
|
-- This script expects the user pma to already be
|
||||||
-- This script expects the user pma to already be #
|
-- existing. (if we would put a line here to create him
|
||||||
-- existing. (if we would put a line here to create him #
|
-- too many users might just use this script and end
|
||||||
-- too many users might just use this script and end #
|
-- up with having the same password for the controluser)
|
||||||
-- up with having the same password for the controluser) #
|
--
|
||||||
-- #
|
-- This user "pma" must be defined in config.inc.php
|
||||||
-- This user "pma" must be defined in config.inc.php #
|
-- (controluser/controlpass)
|
||||||
-- (controluser/controlpass) #
|
--
|
||||||
-- #
|
-- Please dont forget to set up the tablenames in
|
||||||
-- Please dont forget to set up the tablenames in #
|
-- config.inc.php
|
||||||
-- config.inc.php #
|
--
|
||||||
-- #
|
-- $Id$
|
||||||
-- Please note that the table names might be converted #
|
|
||||||
-- to lower case, if the MySQL option #
|
|
||||||
-- "lower_case_table_names" is enabled. By default, this #
|
|
||||||
-- is the case on Win32 machines. #
|
|
||||||
-- #
|
|
||||||
-- ########################################################
|
|
||||||
|
|
||||||
DROP DATABASE IF EXISTS `phpmyadmin`;
|
-- --------------------------------------------------------
|
||||||
CREATE DATABASE IF NOT EXISTS `phpmyadmin`;
|
|
||||||
|
|
||||||
-- (backquotes are not supported in USE)
|
--
|
||||||
|
-- Database : `phpmyadmin`
|
||||||
|
--
|
||||||
|
DROP DATABASE `phpmyadmin`;
|
||||||
|
CREATE DATABASE `phpmyadmin`;
|
||||||
USE phpmyadmin;
|
USE phpmyadmin;
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Privileges
|
||||||
|
--
|
||||||
GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO
|
GRANT SELECT, INSERT, DELETE, UPDATE ON `phpmyadmin`.* TO
|
||||||
'pma'@localhost;
|
'pma'@localhost;
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_bookmark`;
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pma_bookmark`
|
||||||
|
--
|
||||||
|
|
||||||
CREATE TABLE `pma_bookmark` (
|
CREATE TABLE `pma_bookmark` (
|
||||||
`id` int(11) DEFAULT '0' NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL auto_increment,
|
||||||
`dbase` VARCHAR(255) NOT NULL,
|
`dbase` varchar(255) NOT NULL default '',
|
||||||
`user` VARCHAR(255) NOT NULL,
|
`user` varchar(255) NOT NULL default '',
|
||||||
`label` VARCHAR(255) NOT NULL,
|
`label` varchar(255) NOT NULL default '',
|
||||||
`query` TEXT NOT NULL,
|
`query` text NOT NULL,
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) TYPE=MyISAM COMMENT='Bookmarks';
|
) TYPE=MyISAM COMMENT='Bookmarks';
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_relation`;
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pma_column_info`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE `pma_column_info` (
|
||||||
|
`id` int(5) unsigned NOT NULL auto_increment,
|
||||||
|
`db_name` varchar(64) NOT NULL default '',
|
||||||
|
`table_name` varchar(64) NOT NULL default '',
|
||||||
|
`column_name` varchar(64) NOT NULL default '',
|
||||||
|
`comment` varchar(255) NOT NULL default '',
|
||||||
|
`mimetype` varchar(255) NOT NULL default '',
|
||||||
|
`transformation` varchar(255) NOT NULL default '',
|
||||||
|
`transformation_options` varchar(255) NOT NULL default '',
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
UNIQUE KEY `db_name` (`db_name`,`table_name`,`column_name`)
|
||||||
|
) TYPE=MyISAM COMMENT='Column information for phpMyAdmin';
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pma_history`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE `pma_history` (
|
||||||
|
`id` bigint(20) unsigned NOT NULL auto_increment,
|
||||||
|
`username` varchar(64) NOT NULL default '',
|
||||||
|
`db` varchar(64) NOT NULL default '',
|
||||||
|
`table` varchar(64) NOT NULL default '',
|
||||||
|
`timevalue` timestamp(14) NOT NULL,
|
||||||
|
`sqlquery` text NOT NULL,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
KEY `username` (`username`,`db`,`table`,`timevalue`)
|
||||||
|
) TYPE=MyISAM COMMENT='SQL history for phpMyAdmin';
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pma_pdf_pages`
|
||||||
|
--
|
||||||
|
|
||||||
|
CREATE TABLE `pma_pdf_pages` (
|
||||||
|
`db_name` varchar(64) NOT NULL default '',
|
||||||
|
`page_nr` int(10) unsigned NOT NULL auto_increment,
|
||||||
|
`page_descr` varchar(50) NOT NULL default '',
|
||||||
|
PRIMARY KEY (`page_nr`),
|
||||||
|
KEY `db_name` (`db_name`)
|
||||||
|
) TYPE=MyISAM COMMENT='PDF relation pages for phpMyAdmin';
|
||||||
|
|
||||||
|
-- --------------------------------------------------------
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `pma_relation`
|
||||||
|
--
|
||||||
|
|
||||||
CREATE TABLE `pma_relation` (
|
CREATE TABLE `pma_relation` (
|
||||||
`master_db` VARCHAR(64) NOT NULL DEFAULT '',
|
`master_db` varchar(64) NOT NULL default '',
|
||||||
`master_table` VARCHAR(64) NOT NULL DEFAULT '',
|
`master_table` varchar(64) NOT NULL default '',
|
||||||
`master_field` VARCHAR(64) NOT NULL DEFAULT '',
|
`master_field` varchar(64) NOT NULL default '',
|
||||||
`foreign_db` VARCHAR(64) NOT NULL DEFAULT '',
|
`foreign_db` varchar(64) NOT NULL default '',
|
||||||
`foreign_table` VARCHAR(64) NOT NULL DEFAULT '',
|
`foreign_table` varchar(64) NOT NULL default '',
|
||||||
`foreign_field` VARCHAR(64) NOT NULL DEFAULT '',
|
`foreign_field` varchar(64) NOT NULL default '',
|
||||||
PRIMARY KEY (`master_db`, `master_table`,`master_field`),
|
PRIMARY KEY (`master_db`,`master_table`,`master_field`),
|
||||||
KEY `foreign_field` (`foreign_db`, `foreign_table`)
|
KEY `foreign_field` (`foreign_db`,`foreign_table`)
|
||||||
) TYPE=MyISAM COMMENT='Relation table';
|
) TYPE=MyISAM COMMENT='Relation table';
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_table_info`;
|
-- --------------------------------------------------------
|
||||||
CREATE TABLE `pma_table_info` (
|
|
||||||
`db_name` VARCHAR(64) NOT NULL DEFAULT '',
|
--
|
||||||
`table_name` VARCHAR(64) NOT NULL DEFAULT '',
|
-- Table structure for table `pma_table_coords`
|
||||||
`display_field` VARCHAR(64) NOT NULL DEFAULT '',
|
--
|
||||||
PRIMARY KEY (`db_name`, `table_name`)
|
|
||||||
) TYPE=MyISAM COMMENT='Table information for phpMyAdmin';
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_table_coords`;
|
|
||||||
CREATE TABLE `pma_table_coords` (
|
CREATE TABLE `pma_table_coords` (
|
||||||
`db_name` VARCHAR(64) NOT NULL DEFAULT '',
|
`db_name` varchar(64) NOT NULL default '',
|
||||||
`table_name` VARCHAR(64) NOT NULL DEFAULT '',
|
`table_name` varchar(64) NOT NULL default '',
|
||||||
`pdf_page_number` INT NOT NULL DEFAULT '0',
|
`pdf_page_number` int(11) NOT NULL default '0',
|
||||||
`x` float unsigned NOT NULL DEFAULT '0',
|
`x` float unsigned NOT NULL default '0',
|
||||||
`y` float unsigned NOT NULL DEFAULT '0',
|
`y` float unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`db_name`, `table_name`, `pdf_page_number`)
|
PRIMARY KEY (`db_name`,`table_name`,`pdf_page_number`)
|
||||||
) TYPE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output';
|
) TYPE=MyISAM COMMENT='Table coordinates for phpMyAdmin PDF output';
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_pdf_pages`;
|
-- --------------------------------------------------------
|
||||||
CREATE TABLE `pma_pdf_pages` (
|
|
||||||
`db_name` VARCHAR(64) NOT NULL DEFAULT '',
|
|
||||||
`page_nr` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
||||||
`page_descr` VARCHAR(50) NOT NULL DEFAULT '',
|
|
||||||
PRIMARY KEY (`page_nr`),
|
|
||||||
KEY (`db_name`)
|
|
||||||
) TYPE=MyISAM COMMENT='PDF Relationpages for PMA';
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_column_info`;
|
--
|
||||||
CREATE TABLE `pma_column_info` (
|
-- Table structure for table `pma_table_info`
|
||||||
`id` INT(5) UNSIGNED NOT NULL AUTO_INCREMENT,
|
--
|
||||||
`db_name` VARCHAR(64) NOT NULL DEFAULT '',
|
|
||||||
`table_name` VARCHAR(64) NOT NULL DEFAULT '',
|
|
||||||
`column_name` VARCHAR(64) NOT NULL DEFAULT '',
|
|
||||||
`comment` VARCHAR(255) NOT NULL DEFAULT '',
|
|
||||||
`mimetype` VARCHAR(255) NOT NULL DEFAULT '',
|
|
||||||
`transformation` VARCHAR(255) NOT NULL DEFAULT '',
|
|
||||||
`transformation_options` VARCHAR(255) NOT NULL DEFAULT '',
|
|
||||||
PRIMARY KEY (`id`),
|
|
||||||
UNIQUE KEY `db_name` (`db_name`, `table_name`, `column_name`)
|
|
||||||
) TYPE=MyISAM COMMENT='Column Information for phpMyAdmin';
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `pma_history`;
|
CREATE TABLE `pma_table_info` (
|
||||||
CREATE TABLE `pma_history` (
|
`db_name` varchar(64) NOT NULL default '',
|
||||||
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
|
`table_name` varchar(64) NOT NULL default '',
|
||||||
`username` VARCHAR(64) NOT NULL,
|
`display_field` varchar(64) NOT NULL default '',
|
||||||
`db` VARCHAR(64) NOT NULL,
|
PRIMARY KEY (`db_name`,`table_name`)
|
||||||
`table` VARCHAR(64) NOT NULL,
|
) TYPE=MyISAM COMMENT='Table information for phpMyAdmin';
|
||||||
`timevalue` TIMESTAMP NOT NULL,
|
|
||||||
`sqlquery` TEXT NOT NULL,
|
|
||||||
PRIMARY KEY (`id`),
|
|
||||||
KEY `username` (`username`, `db`, `table`, `timevalue`)
|
|
||||||
) TYPE=MyISAM COMMENT='SQL history';
|
|
||||||
|
Reference in New Issue
Block a user