entities/test/data/schema.py
author sylvain.thenault@logilab.fr
Wed, 13 May 2009 11:06:22 +0200
branchtls-sprint
changeset 1780 7549509ce0e6
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
dc_description should take a format argument

class Company(EntityType):
    name = String()

class Division(Company):
    __specializes_schema__ = True

class SubDivision(Division):
    __specializes_schema__ = True