mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
add pma__savedsearches table
This commit is contained in:
parent
f946d61b3b
commit
31f9e3b34c
1 changed files with 19 additions and 0 deletions
|
@ -285,3 +285,22 @@ CREATE TABLE IF NOT EXISTS `pma__navigationhiding` (
|
|||
)
|
||||
COMMENT='Hidden items of navigation tree'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
-- --------------------------------------------------------
|
||||
|
||||
--
|
||||
-- Table structure for table `pma__savedsearches`
|
||||
--
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pma__savedsearches` (
|
||||
`id` int(5) unsigned NOT NULL auto_increment,
|
||||
`username` varchar(64) NOT NULL default '',
|
||||
`db_name` varchar(64) NOT NULL default '',
|
||||
`search_name` varchar(64) NOT NULL default '',
|
||||
`search_data` text NOT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `u_savedsearches_username_dbname` (`username`,`db_name`,`search_name`)
|
||||
)
|
||||
COMMENT='Saved searches'
|
||||
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
|
||||
|
||||
|
|
Loading…
Reference in a new issue