17 lignes
431 o
Go
17 lignes
431 o
Go
|
package model
|
||
|
|
||
|
type File struct {
|
||
|
ID uint `gorm:"column:file_id;primary_key"`
|
||
|
TorrentID uint `gorm:"column:torrent_id"`
|
||
|
Path string `gorm:"column:path"`
|
||
|
Filesize int64 `gorm:"column:filesize"`
|
||
|
|
||
|
Torrent *Torrent `gorm:"AssociationForeignKey:TorrentID;ForeignKey:torrent_id"`
|
||
|
}
|
||
|
|
||
|
// Returns the total size of memory allocated for this struct
|
||
|
func (f File) Size() int {
|
||
|
return (1 + len(f.Path) + 2) * 8;
|
||
|
}
|
||
|
|