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:
authorMarc Delisle <marc@infomarc.info>2014-03-27 01:01:18 +0400
committerMarc Delisle <marc@infomarc.info>2014-03-27 01:01:18 +0400
commite4224bf18de9c6e2d725368c1e10c24f79792613 (patch)
tree83ab42f2244322aea5b97289881d1c4c39bcdbd4 /examples
parenta3c30eeecaaee146fe64a0d695cbd109d487a7a0 (diff)
parent8bc21b7876387a50a70a3658f95b3777a0f67cbb (diff)
Merge pull request #1095 from ashutoshdhundhara/favourite_tables_icon_only
Feature request: #1476 Favorite tables select box.
Diffstat (limited to 'examples')
-rw-r--r--examples/create_tables.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/create_tables.sql b/examples/create_tables.sql
index 8ffbf5ef84..953a4b6bbc 100644
--- a/examples/create_tables.sql
+++ b/examples/create_tables.sql
@@ -120,6 +120,20 @@ CREATE TABLE IF NOT EXISTS `pma__recent` (
-- --------------------------------------------------------
--
+-- Table structure for table `pma__favorite`
+--
+
+CREATE TABLE IF NOT EXISTS `pma__favorite` (
+ `username` varchar(64) NOT NULL,
+ `tables` text NOT NULL,
+ PRIMARY KEY (`username`)
+)
+ COMMENT='Favorite tables'
+ DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
+
+-- --------------------------------------------------------
+
+--
-- Table structure for table `pma__table_uiprefs`
--