aboutsummaryrefslogtreecommitdiffstats
path: root/install/piwigo_structure-mysql.sql
diff options
context:
space:
mode:
Diffstat (limited to 'install/piwigo_structure-mysql.sql')
-rw-r--r--install/piwigo_structure-mysql.sql60
1 files changed, 30 insertions, 30 deletions
diff --git a/install/piwigo_structure-mysql.sql b/install/piwigo_structure-mysql.sql
index 74528ec6b..44c627b5f 100644
--- a/install/piwigo_structure-mysql.sql
+++ b/install/piwigo_structure-mysql.sql
@@ -13,7 +13,7 @@ CREATE TABLE `piwigo_caddie` (
`user_id` smallint(5) NOT NULL default '0',
`element_id` mediumint(8) NOT NULL default '0',
PRIMARY KEY (`user_id`,`element_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_categories`
@@ -39,7 +39,7 @@ CREATE TABLE `piwigo_categories` (
PRIMARY KEY (`id`),
UNIQUE KEY `categories_i3` (`permalink`),
KEY `categories_i2` (`id_uppercat`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_comments`
@@ -58,7 +58,7 @@ CREATE TABLE `piwigo_comments` (
PRIMARY KEY (`id`),
KEY `comments_i2` (`validation_date`),
KEY `comments_i1` (`image_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_config`
@@ -70,7 +70,7 @@ CREATE TABLE `piwigo_config` (
`value` text,
`comment` varchar(255) default NULL,
PRIMARY KEY (`param`)
-) TYPE=MyISAM COMMENT='configuration table';
+) ENGINE=MyISAM COMMENT='configuration table';
--
-- Table structure for table `piwigo_favorites`
@@ -81,7 +81,7 @@ CREATE TABLE `piwigo_favorites` (
`user_id` smallint(5) NOT NULL default '0',
`image_id` mediumint(8) unsigned NOT NULL default '0',
PRIMARY KEY (`user_id`,`image_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_group_access`
@@ -92,7 +92,7 @@ CREATE TABLE `piwigo_group_access` (
`group_id` smallint(5) unsigned NOT NULL default '0',
`cat_id` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`group_id`,`cat_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_groups`
@@ -105,7 +105,7 @@ CREATE TABLE `piwigo_groups` (
`is_default` enum('true','false') NOT NULL default 'false',
PRIMARY KEY (`id`),
UNIQUE KEY `groups_ui1` (`name`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_history`
@@ -126,7 +126,7 @@ CREATE TABLE `piwigo_history` (
`image_type` enum('picture','high','other') default NULL,
PRIMARY KEY (`id`),
KEY `history_i1` (`summarized`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_history_summary`
@@ -140,7 +140,7 @@ CREATE TABLE `piwigo_history_summary` (
`hour` tinyint(2) default NULL,
`nb_pages` int(11) default NULL,
UNIQUE KEY history_summary_ymdh (`year`,`month`,`day`,`hour`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_image_category`
@@ -153,7 +153,7 @@ CREATE TABLE `piwigo_image_category` (
`rank` mediumint(8) unsigned default NULL,
PRIMARY KEY (`image_id`,`category_id`),
KEY `image_category_i1` (`category_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_image_tag`
@@ -165,7 +165,7 @@ CREATE TABLE `piwigo_image_tag` (
`tag_id` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`image_id`,`tag_id`),
KEY `image_tag_i1` (`tag_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_images`
@@ -201,7 +201,7 @@ CREATE TABLE `piwigo_images` (
KEY `images_i4` (`hit`),
KEY `images_i5` (`date_creation`),
KEY `images_i1` (`storage_category_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_languages`
@@ -213,7 +213,7 @@ CREATE TABLE `piwigo_languages` (
`version` varchar(64) NOT NULL default '0',
`name` varchar(64) default NULL,
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_old_permalinks`
@@ -227,7 +227,7 @@ CREATE TABLE `piwigo_old_permalinks` (
`last_hit` datetime default NULL,
`hit` int(10) unsigned NOT NULL default '0',
PRIMARY KEY (`permalink`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_plugins`
@@ -239,7 +239,7 @@ CREATE TABLE `piwigo_plugins` (
`state` enum('inactive','active') NOT NULL default 'inactive',
`version` varchar(64) NOT NULL default '0',
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_rate`
@@ -253,7 +253,7 @@ CREATE TABLE `piwigo_rate` (
`rate` tinyint(2) unsigned NOT NULL default '0',
`date` date NOT NULL default '0000-00-00',
PRIMARY KEY (`element_id`,`user_id`,`anonymous_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_search`
@@ -265,7 +265,7 @@ CREATE TABLE `piwigo_search` (
`last_seen` date default NULL,
`rules` text,
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_sessions`
@@ -277,7 +277,7 @@ CREATE TABLE `piwigo_sessions` (
`data` mediumtext NOT NULL,
`expiration` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_sites`
@@ -289,7 +289,7 @@ CREATE TABLE `piwigo_sites` (
`galleries_url` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`),
UNIQUE KEY `sites_ui1` (`galleries_url`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_tags`
@@ -302,7 +302,7 @@ CREATE TABLE `piwigo_tags` (
`url_name` varchar(255) binary NOT NULL default '',
PRIMARY KEY (`id`),
KEY `tags_i1` (`url_name`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_themes`
@@ -314,7 +314,7 @@ CREATE TABLE `piwigo_themes` (
`version` varchar(64) NOT NULL default '0',
`name` varchar(64) default NULL,
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_upgrade`
@@ -326,7 +326,7 @@ CREATE TABLE `piwigo_upgrade` (
`applied` datetime NOT NULL default '0000-00-00 00:00:00',
`description` varchar(255) default NULL,
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_access`
@@ -337,7 +337,7 @@ CREATE TABLE `piwigo_user_access` (
`user_id` smallint(5) NOT NULL default '0',
`cat_id` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`user_id`,`cat_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_cache`
@@ -353,7 +353,7 @@ CREATE TABLE `piwigo_user_cache` (
`image_access_type` enum('NOT IN','IN') NOT NULL default 'NOT IN',
`image_access_list` mediumtext default NULL,
PRIMARY KEY (`user_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_cache_categories`
@@ -370,7 +370,7 @@ CREATE TABLE `piwigo_user_cache_categories` (
`count_categories` mediumint(8) unsigned default '0',
`user_representative_picture_id` mediumint(8) unsigned default NULL,
PRIMARY KEY (`user_id`,`cat_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_feed`
@@ -382,7 +382,7 @@ CREATE TABLE `piwigo_user_feed` (
`user_id` smallint(5) NOT NULL default '0',
`last_check` datetime default NULL,
PRIMARY KEY (`id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_group`
@@ -393,7 +393,7 @@ CREATE TABLE `piwigo_user_group` (
`user_id` smallint(5) NOT NULL default '0',
`group_id` smallint(5) unsigned NOT NULL default '0',
PRIMARY KEY (`group_id`,`user_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_infos`
@@ -417,7 +417,7 @@ CREATE TABLE `piwigo_user_infos` (
`enabled_high` enum('true','false') NOT NULL default 'true',
`level` tinyint unsigned NOT NULL default '0',
UNIQUE KEY `user_infos_ui1` (`user_id`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_user_mail_notification`
@@ -431,7 +431,7 @@ CREATE TABLE `piwigo_user_mail_notification` (
`last_send` datetime default NULL,
PRIMARY KEY (`user_id`),
UNIQUE KEY `user_mail_notification_ui1` (`check_key`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;
--
-- Table structure for table `piwigo_users`
@@ -445,4 +445,4 @@ CREATE TABLE `piwigo_users` (
`mail_address` varchar(255) default NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `users_ui1` (`username`)
-) TYPE=MyISAM;
+) ENGINE=MyISAM;