Skip to content

Commit f4a3896

Browse files
Update VERSION2.md example to use core types and <object> syntax
- Use int32 instead of int for primary keys - Use <object> with angle brackets for AttributeType syntax Co-authored-by: dimitri-yatsenko <dimitri@datajoint.com>
1 parent 40c02ff commit f4a3896

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

VERSION2.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ The new `object` type provides managed file/folder storage tightly coupled with
2525
@schema
2626
class Recording(dj.Manual):
2727
definition = """
28-
subject_id : int
29-
session_id : int
28+
subject_id : int32
29+
session_id : int32
3030
---
31-
raw_data : object # uses default store
32-
published : object@public # uses named store
31+
raw_data : <object> # uses default store
32+
published : <object@public> # uses named store
3333
"""
3434
```
3535

0 commit comments

Comments
 (0)