Beispiel #1
0
class Parent6(wurm.Table):
    children = wurm.relation('Child6.parent', lazy='query')
Beispiel #2
0
class Parent7(wurm.Table):
    children = wurm.relation('Child7.parent', lazy='strict')
Beispiel #3
0
class Parent5(wurm.Table):
    children = wurm.relation('Child.parent')
Beispiel #4
0
class Parent4(wurm.Table):
    children = wurm.relation('Child4')
Beispiel #5
0
class Parent3(wurm.Table):
    children = wurm.relation('Child')
Beispiel #6
0
class WrongRelation(wurm.Table):
    oh_no = wurm.relation('test_relation_1')
Beispiel #7
0
class Parent2(wurm.Table):
    children = wurm.relation('Child2')