<?php
/**
 * @version		$Id: CHANGELOG 111 2010-09-22 16:56:17Z gfisch $
 * @package		mymuse
 * @copyright	Copyright © 2010 - Arboreta Internet Services - All rights reserved.
 * @license		GNU/GPL
 * @author		Gordon Fisch
 * @author mail	info@mymuse.ca
 * @website		http://www.mymuse.ca
 */

// Check to ensure this file is included in Joomla!
defined('_JEXEC') or die('Restricted access');

// Your custom code here


?>

June 22, 2010: 

ALTER TABLE `jos_mymuse_product` ADD `reservation_fee` FLOAT( 10, 2 ) NOT NULL DEFAULT '0.00' AFTER `product_discount` ;
ALTER TABLE `jos_mymuse_order` ADD `non_res_total` FLOAT( 10, 2 ) NOT NULL DEFAULT '0.00' AFTER `reservation_fee`;
ALTER TABLE `jos_mymuse_order` ADD `pay_now` FLOAT( 10, 2 ) NOT NULL DEFAULT '0.00' AFTER `non_res_total` ;
ALTER TABLE `jos_mymuse_order` ADD `extra` TEXT NOT NULL AFTER `pay_now` ;
ALTER TABLE `jos_mymuse_order` CHANGE `reservation_fee` `reservation_fee` FLOAT( 10, 2 ) NOT NULL DEFAULT '0.00' ;

July 5 nice one liner to change version
find ./ -type f | xargs perl -pi -w -e 's/1.0.100605-b mymuse/1.0.xxxxxx mymuse/g;'
