Monotone-Parent: 5e690b49423932996ff78f8ea2c1881306f09fa3
Monotone-Revision: 2c40f25dddacc34d66befa0a7c8e6c93868a9a92

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-12-30T16:59:13
maint-2.0.2
Ludovic Marcotte 2011-12-30 16:59:13 +00:00
parent 481de5d654
commit fd3d125d20
4 changed files with 6 additions and 4 deletions

2
NEWS
View File

@ -11,6 +11,8 @@ Enhancements
Bug Fixes
- alarms for tasks now depend on the start date and instead of the due date
- increased the content column size in database tables to permit syncs of
cards with big photos in them
1.3-20111212 (1.3.11)
---------------------

View File

@ -12,7 +12,7 @@
},
{
columnName = c_content;
sqlType = "VARCHAR(100000)";
sqlType = "TEXT";
allowsNull = NO;
isPrimaryKey = NO;
},

View File

@ -12,7 +12,7 @@
},
{
columnName = c_content;
sqlType = "VARCHAR(100000)";
sqlType = "TEXT";
allowsNull = NO;
isPrimaryKey = NO;
},

View File

@ -164,7 +164,7 @@
static NSString *sqlFolderFormat
= (@"CREATE TABLE %@ (\n"
@" c_name VARCHAR (255) NOT NULL PRIMARY KEY,\n"
@" c_content VARCHAR (100000) NOT NULL,\n"
@" c_content TEXT NOT NULL,\n"
@" c_creationdate INT4 NOT NULL,\n"
@" c_lastmodified INT4 NOT NULL,\n"
@" c_version INT4 NOT NULL,\n"
@ -258,7 +258,7 @@
static NSString *sqlFolderFormat
= (@"CREATE TABLE %@ (\n"
@" c_name VARCHAR (255) NOT NULL PRIMARY KEY,\n"
@" c_content VARCHAR (100000) NOT NULL,\n"
@" c_content TEXT NOT NULL,\n"
@" c_creationdate INT NOT NULL,\n"
@" c_lastmodified INT NOT NULL,\n"
@" c_version INT NOT NULL,\n"