Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBimal Yashodha <kb.yashodha@gmail.com>2014-06-16 10:09:39 +0400
committerBimal Yashodha <kb.yashodha@gmail.com>2014-06-16 10:09:39 +0400
commit48dd4f354db8430e635edb2fb8f397b089dddc3e (patch)
treeee43f5ae9bd277eb56db7602b33a26e46c88b3f0 /examples
parentefa630dc743729ef09294b5bc5f2bf6fc11d06ef (diff)
Remove references to designer_coords and designerwork
Signed-off-by: Bimal Yashodha <kb.yashodha@gmail.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/config.manyhosts.inc.php1
-rw-r--r--examples/create_tables.sql18
-rw-r--r--examples/create_tables_drizzle.sql18
3 files changed, 0 insertions, 37 deletions
diff --git a/examples/config.manyhosts.inc.php b/examples/config.manyhosts.inc.php
index 7d4d1fa98e..751bd5b587 100644
--- a/examples/config.manyhosts.inc.php
+++ b/examples/config.manyhosts.inc.php
@@ -41,7 +41,6 @@ foreach ($hosts as $host) {
$cfg['Servers'][$i]['history'] = 'pma__history';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
$cfg['Servers'][$i]['tracking'] = 'pma__tracking';
- $cfg['Servers'][$i]['designer_coords'] = 'pma__designer_coords';
$cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
$cfg['Servers'][$i]['recent'] = 'pma__recent';
$cfg['Servers'][$i]['users'] = 'pma__users';
diff --git a/examples/create_tables.sql b/examples/create_tables.sql
index 5668a460c6..297f441907 100644
--- a/examples/create_tables.sql
+++ b/examples/create_tables.sql
@@ -202,24 +202,6 @@ CREATE TABLE IF NOT EXISTS `pma__table_info` (
-- --------------------------------------------------------
--
--- Table structure for table `pma__designer_coords`
---
-
-CREATE TABLE IF NOT EXISTS `pma__designer_coords` (
- `db_name` varchar(64) NOT NULL default '',
- `table_name` varchar(64) NOT NULL default '',
- `x` INT,
- `y` INT,
- `v` TINYINT,
- `h` TINYINT,
- PRIMARY KEY (`db_name`,`table_name`)
-)
- COMMENT='Table coordinates for Designer'
- DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
-
--- --------------------------------------------------------
-
---
-- Table structure for table `pma__tracking`
--
diff --git a/examples/create_tables_drizzle.sql b/examples/create_tables_drizzle.sql
index 71318caf77..29d4626134 100644
--- a/examples/create_tables_drizzle.sql
+++ b/examples/create_tables_drizzle.sql
@@ -175,24 +175,6 @@ CREATE TABLE IF NOT EXISTS `pma__table_info` (
-- --------------------------------------------------------
--
--- Table structure for table `pma__designer_coords`
---
-
-CREATE TABLE IF NOT EXISTS `pma__designer_coords` (
- `db_name` varchar(64) NOT NULL default '',
- `table_name` varchar(64) NOT NULL default '',
- `x` INT,
- `y` INT,
- `v` INT,
- `h` INT,
- PRIMARY KEY (`db_name`,`table_name`)
-)
- COMMENT='Table coordinates for Designer'
- COLLATE utf8_bin;
-
--- --------------------------------------------------------
-
---
-- Table structure for table `pma__tracking`
--