schema.py
changeset 2184 d561b2725144
parent 2181 94ca417b9b07
child 2185 09d0445641e2
equal deleted inserted replaced
2181:94ca417b9b07 2184:d561b2725144
    34 
    34 
    35 #  set of meta-relations available for every entity types
    35 #  set of meta-relations available for every entity types
    36 META_RELATIONS_TYPES = set((
    36 META_RELATIONS_TYPES = set((
    37     'owned_by', 'created_by', 'is', 'is_instance_of', 'identity',
    37     'owned_by', 'created_by', 'is', 'is_instance_of', 'identity',
    38     'eid', 'creation_date', 'modification_date', 'has_text',
    38     'eid', 'creation_date', 'modification_date', 'has_text',
    39     )))
    39     ))
    40 
    40 
    41 #  set of entity and relation types used to build the schema
    41 #  set of entity and relation types used to build the schema
    42 SCHEMA_TYPES = set((
    42 SCHEMA_TYPES = set((
    43     'CWEType', 'CWRType', 'CWAttribute', 'CWRelation',
    43     'CWEType', 'CWRType', 'CWAttribute', 'CWRelation',
    44     'CWConstraint', 'CWConstraintType', 'RQLExpression',
    44     'CWConstraint', 'CWConstraintType', 'RQLExpression',