entities/test/data/schema.py
author sylvain.thenault@logilab.fr
Wed, 18 Feb 2009 15:17:28 +0100
branchtls-sprint
changeset 794 b2f962292dbf
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
merge

class Company(EntityType):
    name = String()

class Division(Company):
    __specializes_schema__ = True

class SubDivision(Division):
    __specializes_schema__ = True