From: <rc...@us...> - 2015-02-06 15:27:43
|
Revision: 7130 http://sourceforge.net/p/web-erp/reponame/7130 Author: rchacon Date: 2015-02-06 15:27:41 +0000 (Fri, 06 Feb 2015) Log Message: ----------- Add upgrade 4.12.2 - 4.13. Modified Paths: -------------- trunk/sql/mysql/upgrade4.12.1-4.12.2.sql Added Paths: ----------- trunk/sql/mysql/upgrade4.12.2-4.13.sql Modified: trunk/sql/mysql/upgrade4.12.1-4.12.2.sql =================================================================== --- trunk/sql/mysql/upgrade4.12.1-4.12.2.sql 2015-02-06 07:07:22 UTC (rev 7129) +++ trunk/sql/mysql/upgrade4.12.1-4.12.2.sql 2015-02-06 15:27:41 UTC (rev 7130) @@ -1,3 +1,7 @@ +-- webERP 4.12.2. +-- Release date: 2015-02-06. +-- + CREATE TABLE IF NOT EXISTS `locationusers` ( `loccode` varchar(5) NOT NULL, `userid` varchar(20) NOT NULL, @@ -10,4 +14,5 @@ INSERT INTO `locationusers` (`loccode`, `userid`, `canview`, `canupd`) SELECT loccode, userid,1,1 FROM locations, www_users; INSERT INTO `scripts` (`script`, `pagesecurity`, `description`) VALUES ('LocationUsers.php', '15', 'Allows users that have permission to access a location to be defined'); -UPDATE config SET confvalue='4.12.2' WHERE confname='VersionNumber'; \ No newline at end of file +-- Update version number: +UPDATE config SET confvalue='4.12.2' WHERE confname='VersionNumber'; Added: trunk/sql/mysql/upgrade4.12.2-4.13.sql =================================================================== --- trunk/sql/mysql/upgrade4.12.2-4.13.sql (rev 0) +++ trunk/sql/mysql/upgrade4.12.2-4.13.sql 2015-02-06 15:27:41 UTC (rev 7130) @@ -0,0 +1,10 @@ +-- webERP 4.13. +-- Release date: yyyy-mm-dd. +-- + + + + + +-- Update version number: +UPDATE config SET confvalue='4.13' WHERE confname='VersionNumber'; |