goa/skel/schema.py
author sylvain.thenault@logilab.fr
Tue, 27 Jan 2009 13:05:38 +0100
changeset 474 c9b0c3c06be0
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
don't check owl

from cubicweb.schema import format_constraint

class Blog(EntityType):
    title = String(maxsize=50, required=True)
    description = String()

class BlogEntry(EntityType):
    title = String(maxsize=100, required=True)
    publish_date = Date(default='TODAY')
    text_format = String(meta=True, internationalizable=True, maxsize=50,
                         default='text/rest', constraints=[format_constraint])
    text = String(fulltextindexed=True)
    category = String(vocabulary=('important','business'))
    entry_of = SubjectRelation('Blog', cardinality='?*')