entities/test/data/schema.py
author sylvain.thenault@logilab.fr
Wed, 14 Jan 2009 11:49:29 +0100
changeset 401 bc55a104d636
parent 0 b97547f5f1fa
child 1977 606923dff11b
permissions -rw-r--r--
cleanup, backport manage perm action from jpl

class Company(EntityType):
    name = String()

class Division(Company):
    __specializes_schema__ = True

class SubDivision(Division):
    __specializes_schema__ = True