[Weberp-svn] SF.net SVN: weberp:[5536] trunk
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2011-07-03 15:28:28
|
Revision: 5536 http://weberp.svn.sourceforge.net/weberp/?rev=5536&view=rev Author: tim_schofield Date: 2011-07-03 15:28:17 +0000 (Sun, 03 Jul 2011) Log Message: ----------- Add in chequeno field to banktrans table Modified Paths: -------------- trunk/includes/session.inc Added Paths: ----------- trunk/sql/mysql/updates/88.php Modified: trunk/includes/session.inc =================================================================== --- trunk/includes/session.inc 2011-07-03 13:36:33 UTC (rev 5535) +++ trunk/includes/session.inc 2011-07-03 15:28:17 UTC (rev 5536) @@ -13,7 +13,7 @@ header('Location:' . $rootpath . '/install/index.php'); } include($PathPrefix . 'config.php'); -$DBVersion=87; +$DBVersion=88; if (isset($SessionSavePath)){ session_save_path($SessionSavePath); } Added: trunk/sql/mysql/updates/88.php =================================================================== --- trunk/sql/mysql/updates/88.php (rev 0) +++ trunk/sql/mysql/updates/88.php 2011-07-03 15:28:17 UTC (rev 5536) @@ -0,0 +1,7 @@ +<?php + +AddColumn('chequeno', 'banktrans', 'int( 11 )', 'NOT NULL', '0', 'ref', $db); + +UpdateDBNo(88, $db); + +?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |