Changeset 543 for trunk/phpbms/install
- Timestamp:
- 05/28/09 17:05:55 (3 years ago)
- Files:
-
- 1 modified
-
trunk/phpbms/install/updatev0.98.sql (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpbms/install/updatev0.98.sql
r542 r543 171 171 UPDATE `tabledefs` SET `hascustomfields` = 1 WHERE `id` IN(12, 9, 26, 200); 172 172 173 --create tablecustomfields-- 174 CREATE TABLE tablecustomfields ( 175 `id` int(11) NOT NULL auto_increment, 176 `tabledefid` int(11) NOT NULL default 0, 177 `name` varchar(128) NOT NULL default '', 178 `field` varchar(8) NOT NULL default '', 179 `format` varchar(32), 180 `generator` TEXT, 181 `required` TINYINT(4) NOT NULL default 0, 182 `displayorder` int(11) NOT NULL default 0, 183 `roleid` int(11) NOT NULL default 0, 184 PRIMARY KEY (`id`), 185 KEY `tabledef` (`tabledefid`) 186 ) ENGINE=INNODB; 187 173 188 --tabs insert/update-- 174 189 INSERT INTO `tabs` (`id`, `uuid`, `name`, `tabgroup`, `location`, `displayorder`, `enableonnew`, `roleid`, `tooltip`, `notificationsql`, `createdby`, `creationdate`, `modifiedby`, `modifieddate`) VALUES ('101', 'tab:2ebf956d-5e39-c7d5-16b7-501b64685a5a', 'custom fields', 'tabledefs entry', 'modules/base/tabledefs_custom.php', '60', '0', '-100', NULL, NULL, 1, NOW(), 1, NOW());