diff options
Diffstat (limited to 'install/phpwebgallery_structure.sql')
-rw-r--r-- | install/phpwebgallery_structure.sql | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/install/phpwebgallery_structure.sql b/install/phpwebgallery_structure.sql index 12a27c00d..9e50885f6 100644 --- a/install/phpwebgallery_structure.sql +++ b/install/phpwebgallery_structure.sql @@ -177,6 +177,18 @@ CREATE TABLE `phpwebgallery_rate` ( ) TYPE=MyISAM; -- +-- Table structure for table `phpwebgallery_search` +-- + +DROP TABLE IF EXISTS `phpwebgallery_search`; +CREATE TABLE `phpwebgallery_search` ( + `id` int(10) unsigned NOT NULL auto_increment, + `last_seen` date default NULL, + `rules` text, + PRIMARY KEY (`id`) +) TYPE=MyISAM; + +-- -- Table structure for table `phpwebgallery_sessions` -- |