goa/skel/schema.py
author Emile Anclin <emile.anclin@logilab.fr>
Thu, 02 Apr 2009 11:50:42 +0200
changeset 1212 76de1c3aaef3
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
[doc] RQL: a note about specifying several types

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='?*')