Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/model/comment.go
2017-05-10 11:27:17 +03:00

39 lignes
1,1 Kio
Go

package model
import (
"time"
)
type Comment struct {
Id uint `gorm:"column:comment_id;primary_key"`
TorrentId uint `gorm:"column:torrent_id"`
UserId uint `gorm:"column:user_id"`
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
Torrent *Torrents `gorm:"ForeignKey:torrent_id"`
User *User `gorm:"ForeignKey:user_id"`
Content string `gorm:"column:content"`
}
// Returns the total size of memory recursively allocated for this struct
func (c Comment) Size() int {
return (3 + 3*2 + 2 + 2 + len(c.Content)) * 8
}
type OldComment struct {
TorrentId uint `gorm:"column:torrent_id"`
Date time.Time `gorm:"column:date"`
Torrent *Torrents `gorm:"ForeignKey:torrent_id"`
Username string `gorm:"column:username"`
Content string `gorm:"column:content"`
}
// Returns the total size of memory recursively allocated for this struct
func (c OldComment) Size() int {
return (4 + 2*2 + len(c.Username) + len(c.Content)) * 8
}
func (c OldComment) TableName() string {
// cba to rename this in the db
return "comments_old"
}