Merge pull request #159 from niphlod/issue/mysql_wiki

fixed bug with Mysql. Thanks @Adi for reporting.
This commit is contained in:
mdipierro
2013-08-04 14:35:05 -07:00

View File

@@ -5106,7 +5106,7 @@ class Wiki(object):
requires=[IS_SLUG(),
IS_NOT_IN_DB(db, 'wiki_page.slug')],
writable=False),
Field('title', unique=True),
Field('title', length=255, unique=True),
Field('body', 'text', notnull=True),
Field('tags', 'list:string'),
Field('can_read', 'list:string',