Skip to content

Commit 0c91845

Browse files
committedFeb 4, 2025
Add indexes to db
1 parent f413d2d commit 0c91845

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎share/model.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,25 @@ type ProtoShare struct {
3535
gorm.Model
3636
UIDOwner string `gorm:"size:64"`
3737
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
3939
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"`
4242
Permissions uint8
4343
Orphan bool
4444
Expiration datatypes.NullTime
4545
}
4646

4747
type Share struct {
4848
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 / ...
5050
SharedWithIsGroup bool
5151
Description string `gorm:"size:1024"`
5252
}
5353

5454
type PublicLink struct {
5555
ProtoShare
56-
Token string
56+
Token string `gorm:"index:i_token"`
5757
// Enforce uniqueness in db re: Itemsource
5858
Quicklink bool
5959
NotifyUploads bool

0 commit comments

Comments
 (0)