File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -35,25 +35,25 @@ type ProtoShare struct {
35
35
gorm.Model
36
36
UIDOwner string `gorm:"size:64"`
37
37
UIDInitiator string `gorm:"size:64"`
38
- ItemType ItemType `gorm:"size:16"` // file | folder | reference | symlink
38
+ ItemType ItemType `gorm:"size:16;index:i_item_type "` // file | folder | reference | symlink
39
39
InitialPath string
40
- Inode string `gorm:"size:32"`
41
- Instance string `gorm:"size:32"`
40
+ Inode string `gorm:"size:32;index:i_inode "`
41
+ Instance string `gorm:"size:32;index:i_instance "`
42
42
Permissions uint8
43
43
Orphan bool
44
44
Expiration datatypes.NullTime
45
45
}
46
46
47
47
type Share struct {
48
48
ProtoShare
49
- ShareWith string `gorm:"size:255"` // 255 because this can be a lw account, which are mapped from email addresses
49
+ ShareWith string `gorm:"size:255;index:i_share_with "` // 255 because this can be a lw account, which are mapped from email addresses / ...
50
50
SharedWithIsGroup bool
51
51
Description string `gorm:"size:1024"`
52
52
}
53
53
54
54
type PublicLink struct {
55
55
ProtoShare
56
- Token string
56
+ Token string `gorm:"index:i_token"`
57
57
// Enforce uniqueness in db re: Itemsource
58
58
Quicklink bool
59
59
NotifyUploads bool
You can’t perform that action at this time.
0 commit comments