File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed
Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11This file contains the changes to the Roundup system over time. The entries
22are given with the most recent entry first.
33
4+ 2005-??-?? 0.9.0b2
5+ Fixed:
6+ - MySQL now creates String columns using the TEXT column type
7+
8+
492005-10-07 0.9.0b1
510Feature:
611- added "imapServer.py" script (sf patch 934567)
Original file line number Diff line number Diff line change @@ -37,6 +37,10 @@ module. Download the latest version from http://www.python.org/.
3737It is highly recommended that users install the latest patch version
3838of python as these contain many fixes to serious bugs.
3939
40+ Some variants of Linux will need an additional "python dev" package
41+ installed for Roundup installation to work. Debian and derivatives, are
42+ known to require this.
43+
4044If you're on windows, you will either need to be using the ActiveState python
4145distribution (at http://www.activestate.com/Products/ActivePython/), or you'll
4246have to install the win32all package separately (get it from
Original file line number Diff line number Diff line change 1- #$Id: back_mysql.py,v 1.59 2005-07-12 01 :37:49 richard Exp $
1+ #$Id: back_mysql.py,v 1.60 2005-10-24 03 :37:11 richard Exp $
22#
33# Copyright (c) 2003 Martynas Sklyzmantas, Andrey Lebedev <[email protected] > 44#
@@ -117,7 +117,7 @@ class Database(Database):
117117 #mysql_backend = 'BDB'
118118
119119 hyperdb_to_sql_datatypes = {
120- hyperdb .String : 'VARCHAR(255) ' ,
120+ hyperdb .String : 'TEXT ' ,
121121 hyperdb .Date : 'DATETIME' ,
122122 hyperdb .Link : 'INTEGER' ,
123123 hyperdb .Interval : 'VARCHAR(255)' ,
You can’t perform that action at this time.
0 commit comments