entities/test/data/schema.py
author sylvain.thenault@logilab.fr
Thu, 26 Feb 2009 13:31:29 +0100
changeset 976 84884807b77b
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
should use .cnx, not ._cnx

class Company(EntityType):
    name = String()

class Division(Company):
    __specializes_schema__ = True

class SubDivision(Division):
    __specializes_schema__ = True