10 lines
174 B
Go
Raw Permalink Normal View History

package persistence
2023-06-26 12:17:46 -03:00
type LikeSortID int64
type Like struct {
SortID LikeSortID `db:"sort_order"`
UserID UserID `db:"user_id"`
TweetID TweetID `db:"tweet_id"`
}