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
path: root/sql
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-07-09 14:36:28 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-07-09 14:36:28 +0300
commit8c6261c73f01be939864bc7a048273452ad9b58a (patch)
tree759e96e3485d15c6fb14aae766f0ae266d3b5b98 /sql
parente4b14c2de31b024bd4a9136b3a9446ecf8a631e0 (diff)
Underscores are preferred to separate words in configuration storage table names/directives
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'sql')
-rw-r--r--sql/create_tables.sql4
-rw-r--r--sql/create_tables_drizzle.sql4
2 files changed, 4 insertions, 4 deletions
diff --git a/sql/create_tables.sql b/sql/create_tables.sql
index 2815ac8742..fb1894a8e4 100644
--- a/sql/create_tables.sql
+++ b/sql/create_tables.sql
@@ -339,10 +339,10 @@ CREATE TABLE IF NOT EXISTS `pma__designer_settings` (
-- --------------------------------------------------------
--
--- Table structure for table `pma__exporttemplates`
+-- Table structure for table `pma__export_templates`
--
-CREATE TABLE IF NOT EXISTS `pma__exporttemplates` (
+CREATE TABLE IF NOT EXISTS `pma__export_templates` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(64) NOT NULL,
`export_type` varchar(10) NOT NULL,
diff --git a/sql/create_tables_drizzle.sql b/sql/create_tables_drizzle.sql
index 472e63c945..c4e523ac6f 100644
--- a/sql/create_tables_drizzle.sql
+++ b/sql/create_tables_drizzle.sql
@@ -291,10 +291,10 @@ CREATE TABLE IF NOT EXISTS `pma__designer_settings` (
-- --------------------------------------------------------
--
--- Table structure for table `pma__exporttemplates`
+-- Table structure for table `pma__export_templates`
--
-CREATE TABLE IF NOT EXISTS `pma__exporttemplates` (
+CREATE TABLE IF NOT EXISTS `pma__export_templates` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(64) NOT NULL,
`export_type` varchar(10) NOT NULL,