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