diff --git a/README b/README
new file mode 100644
index 0000000..4604045
--- /dev/null
+++ b/README
@@ -0,0 +1,2 @@
+jira/chd-1656 [Time Tracker] Make the notes field longtext the same a comment instead of limited to just 255 Char.
+
diff --git a/plugins/cerberusweb.timetracking/api/Patch.php b/plugins/cerberusweb.timetracking/api/Patch.php
index 214a3c2..613c8b1 100644
--- a/plugins/cerberusweb.timetracking/api/Patch.php
+++ b/plugins/cerberusweb.timetracking/api/Patch.php
@@ -12,5 +12,6 @@
 		$file_prefix = dirname(dirname(__FILE__)) . '/patches';
 		
 		$this->registerPatch(new DevblocksPatch('cerberusweb.timetracking',3,$file_prefix.'/1.0.0.php',''));
+		$this->registerPatch(new DevblocksPatch('cerberusweb.timetracking',4,$file_prefix.'/4.3.2.php',''));
 	}
 };
diff --git a/plugins/cerberusweb.timetracking/patches/4.3.2.php b/plugins/cerberusweb.timetracking/patches/4.3.2.php
new file mode 100644
index 0000000..c0bb224
--- /dev/null
+++ b/plugins/cerberusweb.timetracking/patches/4.3.2.php
@@ -0,0 +1,31 @@
+<?php
+/***********************************************************************
+| Cerberus Helpdesk(tm) developed by WebGroup Media, LLC.
+|-----------------------------------------------------------------------
+| All source code & content (c) Copyright 2009, WebGroup Media LLC
+|   unless specifically noted otherwise.
+|
+| This source code is released under the Cerberus Public License.
+| The latest version of this license can be found here:
+| http://www.cerberusweb.com/license.php
+|
+| By using this software, you acknowledge having read this license
+| and agree to be bound thereby.
+| ______________________________________________________________________
+|	http://www.cerberusweb.com	  http://www.webgroupmedia.com/
+***********************************************************************/
+
+$db = DevblocksPlatform::getDatabaseService();
+$datadict = NewDataDictionary($db); /* @var $datadict ADODB_DataDict */ // ,'mysql' 
+
+// ===========================================================================
+// Expand timetracking_entry max size from 255 to longtext
+
+$columns = $datadict->MetaColumns('timetracking_entry');
+
+if(isset($columns['NOTES'])) {
+	$sql = sprintf("ALTER TABLE timetracking_entry CHANGE COLUMN notes notes longtext DEFAULT '' NOT NULL");
+	$db->Execute($sql);
+}
+
+return TRUE;
\ No newline at end of file
diff --git a/plugins/cerberusweb.timetracking/templates/timetracking/rpc/time_entry_panel.tpl b/plugins/cerberusweb.timetracking/templates/timetracking/rpc/time_entry_panel.tpl
index f5903ca..126b2d8 100644
--- a/plugins/cerberusweb.timetracking/templates/timetracking/rpc/time_entry_panel.tpl
+++ b/plugins/cerberusweb.timetracking/templates/timetracking/rpc/time_entry_panel.tpl
@@ -38,7 +38,7 @@
 <br>
 
 <b>{$translate->_('timetracking.ui.entry_panel.note')}</b> {$translate->_('timetracking.ui.entry_panel.note_hint')}<br>
-<input type="text" name="notes" size="45" maxlength="255" style="width:98%;" value="{$model->notes|escape}"><br>
+<TEXTAREA name="notes" ROWS=4 style="width:98%;" >{$model->notes|escape}</TEXTAREA>
 <br>
 
 <b>{$translate->_('timetracking.ui.entry_panel.debit_time_client')}</b> {$translate->_('timetracking.ui.entry_panel.debit_time_client_hint')}<br>

