- Timestamp:
- Jun 12, 2012, 10:51:25 PM (12 years ago)
- Location:
- trunk/install
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/install/config.sql
r13782 r15652 56 56 INSERT INTO piwigo_config (param,value,comment) VALUES ('order_by','ORDER BY date_available DESC, file ASC, id ASC','default photo order'); 57 57 INSERT INTO piwigo_config (param,value,comment) VALUES ('order_by_inside_category','ORDER BY date_available DESC, file ASC, id ASC','default photo order inside category'); 58 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_websize_resize','false');59 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_websize_maxwidth','800');60 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_websize_maxheight','600');61 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_websize_quality','95');62 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_thumb_maxwidth','128');63 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_thumb_maxheight','96');64 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_thumb_quality','95');65 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_thumb_crop','false');66 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_thumb_follow_orientation','true');67 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_keep','true');68 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_resize','false');69 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_maxwidth','2000');70 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_maxheight','2000');71 INSERT INTO piwigo_config (param,value) VALUES ('upload_form_hd_quality','95');72 58 INSERT INTO piwigo_config (param,value) VALUES ('original_resize','false'); 73 59 INSERT INTO piwigo_config (param,value) VALUES ('original_resize_maxwidth','2016'); -
trunk/install/piwigo_structure-mysql.sql
r13849 r15652 178 178 `date_available` datetime NOT NULL default '0000-00-00 00:00:00', 179 179 `date_creation` datetime default NULL, 180 `tn_ext` varchar(4) default '',181 180 `name` varchar(255) default NULL, 182 181 `comment` text, … … 190 189 `date_metadata_update` date default NULL, 191 190 `rating_score` float(5,2) unsigned default NULL, 192 `has_high` enum('true') default NULL,193 191 `path` varchar(255) NOT NULL default '', 194 192 `storage_category_id` smallint(5) unsigned default NULL, 195 `high_filesize` mediumint(9) unsigned default NULL,196 `high_width` smallint(9) unsigned default NULL,197 `high_height` smallint(9) unsigned default NULL,198 193 `level` tinyint unsigned NOT NULL default '0', 199 194 `md5sum` char(32) default NULL, … … 410 405 `status` enum('webmaster','admin','normal','generic','guest') NOT NULL default 'guest', 411 406 `language` varchar(50) NOT NULL default 'en_UK', 412 `maxwidth` smallint(6) default NULL,413 `maxheight` smallint(6) default NULL,414 407 `expand` enum('true','false') NOT NULL default 'false', 415 408 `show_nb_comments` enum('true','false') NOT NULL default 'false',
Note: See TracChangeset
for help on using the changeset viewer.