Skip to content

Commit 55ed914

Browse files
committed
Remove nullable on BreedingPair part tables
1 parent 3286fce commit 55ed914

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

element_animal/genotyping.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,14 +89,14 @@ class Father(dj.Part):
8989
definition = """
9090
-> master
9191
---
92-
-> [nullable] subject.Subject.proj(father="subject")
92+
-> subject.Subject.proj(father="subject")
9393
"""
9494

9595
class Mother(dj.Part):
9696
definition = """
9797
-> master
9898
---
99-
-> [nullable] subject.Subject.proj(mother="subject")
99+
-> subject.Subject.proj(mother="subject")
100100
"""
101101

102102

0 commit comments

Comments
 (0)