From: <tim...@us...> - 2009-12-14 20:21:45
|
Revision: 3228 http://web-erp.svn.sourceforge.net/web-erp/?rev=3228&view=rev Author: tim_schofield Date: 2009-12-14 20:21:39 +0000 (Mon, 14 Dec 2009) Log Message: ----------- Include pdflanguage field in www_users Modified Paths: -------------- trunk/doc/Change.log.html trunk/sql/mysql/upgrade3.11.1-3.12.sql Removed Paths: ------------- trunk/sql/mysql/upgrade3.12-3.13.sql Modified: trunk/doc/Change.log.html =================================================================== --- trunk/doc/Change.log.html 2009-12-14 20:07:21 UTC (rev 3227) +++ trunk/doc/Change.log.html 2009-12-14 20:21:39 UTC (rev 3228) @@ -1,5 +1,6 @@ <p><font SIZE=4 COLOR=BLUE><b>webERP Change Log</b></font></p> <p> +<p>14/12/09 Tim: upgrade3.11-3.12.sql - Include pdflanguage field in www_users <p>12/12/09 Simon Peter Otandeka - FixedAssetRegister.php and FixedAssetJournal.php - Bux fixes to asset manager. <p>11/12/09 Tim: PO_PDFPurchOrder.php - Print the correct suppliers unit of measure. <p>11/12/09 Tim: SelectProducts.php - Ensure that preferred supplier is shown first, and provide a direct link to purchase ordering. Modified: trunk/sql/mysql/upgrade3.11.1-3.12.sql =================================================================== --- trunk/sql/mysql/upgrade3.11.1-3.12.sql 2009-12-14 20:07:21 UTC (rev 3227) +++ trunk/sql/mysql/upgrade3.11.1-3.12.sql 2009-12-14 20:21:39 UTC (rev 3228) @@ -45,4 +45,6 @@ DELETE FROM `factorcompanies` WHERE `coyname`='None'; INSERT INTO `config` (`confname`, `confvalue`) VALUES ('LogPath', ''); -INSERT INTO `config` (`confname`, `confvalue`) VALUES ('LogSeverity', '0'); \ No newline at end of file +INSERT INTO `config` (`confname`, `confvalue`) VALUES ('LogSeverity', '0'); + +ALTER TABLE `www_users` ADD COLUMN `pdflanguage` tinyint(1) NOT NULL DEFAULT '0'; Deleted: trunk/sql/mysql/upgrade3.12-3.13.sql =================================================================== --- trunk/sql/mysql/upgrade3.12-3.13.sql 2009-12-14 20:07:21 UTC (rev 3227) +++ trunk/sql/mysql/upgrade3.12-3.13.sql 2009-12-14 20:21:39 UTC (rev 3228) @@ -1,2 +0,0 @@ -ALTER TABLE `www_users` ADD COLUMN `pdflanguage` tinyint(1) NOT NULL DEFAULT '0'; -ALTER TABLE `cogsglpostings` CHANGE `area` CHAR(3) NOT NULL DEFAULT ''; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |