Changeset 808 for trunk/install
- Timestamp:
- Aug 8, 2005, 10:52:19 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/phpwebgallery_structure.sql
r801 r808 213 213 214 214 -- 215 -- Table structure for table `phpwebgallery_user_ forbidden`216 -- 217 218 DROP TABLE IF EXISTS `phpwebgallery_user_ forbidden`;219 CREATE TABLE `phpwebgallery_user_ forbidden` (215 -- Table structure for table `phpwebgallery_user_cache` 216 -- 217 218 DROP TABLE IF EXISTS `phpwebgallery_user_cache`; 219 CREATE TABLE `phpwebgallery_user_cache` ( 220 220 `user_id` smallint(5) unsigned NOT NULL default '0', 221 221 `need_update` enum('true','false') NOT NULL default 'true', … … 236 236 237 237 -- 238 -- Table structure for table `phpwebgallery_users` 239 -- 240 241 DROP TABLE IF EXISTS `phpwebgallery_users`; 242 CREATE TABLE `phpwebgallery_users` ( 243 `id` smallint(5) unsigned NOT NULL auto_increment, 244 `username` varchar(20) binary NOT NULL default '', 245 `password` varchar(32) default NULL, 246 `mail_address` varchar(255) default NULL, 238 -- Table structure for table `phpwebgallery_user_infos` 239 -- 240 241 DROP TABLE IF EXISTS `phpwebgallery_user_infos`; 242 CREATE TABLE `phpwebgallery_user_infos` ( 243 `user_id` smallint(5) unsigned NOT NULL default '0', 247 244 `nb_image_line` tinyint(1) unsigned NOT NULL default '5', 248 245 `nb_line_page` tinyint(3) unsigned NOT NULL default '3', … … 258 255 `feed_id` varchar(50) binary default NULL, 259 256 `registration_date` datetime NOT NULL default '0000-00-00 00:00:00', 257 UNIQUE KEY `user_infos_ui1` (`user_id`) 258 ) TYPE=MyISAM; 259 260 -- 261 -- Table structure for table `phpwebgallery_users` 262 -- 263 264 DROP TABLE IF EXISTS `phpwebgallery_users`; 265 CREATE TABLE `phpwebgallery_users` ( 266 `id` smallint(5) unsigned NOT NULL auto_increment, 267 `username` varchar(20) binary NOT NULL default '', 268 `password` varchar(32) default NULL, 269 `mail_address` varchar(255) default NULL, 260 270 PRIMARY KEY (`id`), 261 271 UNIQUE KEY `users_ui1` (`username`)
Note: See TracChangeset
for help on using the changeset viewer.