Skip to content

Commit ce2eaf7

Browse files
author
Richard Jones
committed
MySQL now creates String columns using the TEXT column type
also, a minor doc fix
1 parent e2ca153 commit ce2eaf7

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
This file contains the changes to the Roundup system over time. The entries
22
are 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+
49
2005-10-07 0.9.0b1
510
Feature:
611
- added "imapServer.py" script (sf patch 934567)

doc/installation.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ module. Download the latest version from http://www.python.org/.
3737
It is highly recommended that users install the latest patch version
3838
of 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+
4044
If you're on windows, you will either need to be using the ActiveState python
4145
distribution (at http://www.activestate.com/Products/ActivePython/), or you'll
4246
have to install the win32all package separately (get it from

roundup/backends/back_mysql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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)',

0 commit comments

Comments
 (0)