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

45 lignes
1,3 Kio
Go
Brut Vue normale Historique

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"`
2017-05-08 19:26:29 +02:00
Content string `gorm:"column:content"`
CreatedAt time.Time `gorm:"column:created_at"`
UpdatedAt time.Time `gorm:"column:updated_at"`
2017-05-10 09:10:23 +02:00
DeletedAt *time.Time
2017-05-08 19:26:29 +02:00
2017-05-12 01:40:02 +02:00
Torrent *Torrent `gorm:"AssociationForeignKey:TorrentID;ForeignKey:torrent_id"`
User *User `gorm:"AssociationForeignKey:UserID;ForeignKey:user_id"`
2017-05-10 10:27:17 +02:00
}
// Returns the total size of memory recursively allocated for this struct
func (c Comment) Size() int {
return (3 + 3*3 + 2 + 2 + len(c.Content)) * 8
2017-05-08 19:26:29 +02:00
}
type OldComment struct {
TorrentID uint `gorm:"column:torrent_id"`
2017-05-08 19:26:29 +02:00
Username string `gorm:"column:username"`
Content string `gorm:"column:content"`
Date time.Time `gorm:"column:date"`
Torrent *Torrent `gorm:"ForeignKey:torrent_id"`
2017-05-10 10:27:17 +02:00
}
2017-05-08 19:26:29 +02:00
2017-05-10 10:27:17 +02:00
// Returns the total size of memory recursively allocated for this struct
func (c OldComment) Size() int {
return (1 + 2*2 + len(c.Username) + len(c.Content) + 3 + 1) * 8
2017-05-08 19:26:29 +02:00
}
func (c OldComment) TableName() string {
2017-05-08 20:07:25 +02:00
// cba to rename this in the db
// TODO: Update database schema to fix this hack
// I find this odd considering how often the schema changes already
2017-05-08 19:26:29 +02:00
return "comments_old"
}