phpBMS

Changeset 543 for trunk/phpbms/install

Show
Ignore:
Timestamp:
05/28/09 17:05:55 (3 years ago)
Author:
brieb
Message:
  • Removed id display from many add/edits as the bottom are now displays both uuid and id.
  • Removed comment markers from offending lines in BMS update.
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/phpbms/install/updatev0.98.sql

    r542 r543  
    171171UPDATE `tabledefs` SET `hascustomfields` = 1 WHERE `id` IN(12, 9, 26, 200); 
    172172 
     173--create tablecustomfields-- 
     174CREATE 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 
    173188--tabs insert/update-- 
    174189INSERT 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()); 
phpBMS vulnerability assesment provided by Orvant Inc. Copyright © 2010 Kreotek, LLC. All Rights reserved.