mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-30 06:06:15 -06:00
remove added but-commented-out field
This commit is contained in:
parent
921b64f555
commit
6bd75b8a26
1 changed files with 2 additions and 3 deletions
|
|
@ -37,9 +37,8 @@ type ListEntry struct {
|
|||
CreatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item created
|
||||
UpdatedAt time.Time `bun:"type:timestamptz,nullzero,notnull,default:current_timestamp"` // when was item last updated
|
||||
ListID string `bun:"type:CHAR(26),notnull,nullzero,unique:listentrylistfollow"` // ID of the list that this entry belongs to.
|
||||
// List *List `bun:"-"` //
|
||||
FollowID string `bun:"type:CHAR(26),notnull,nullzero,unique:listentrylistfollow"` // Follow that the account owning this entry wants to see posts of in the timeline.
|
||||
Follow *Follow `bun:"-"` // Follow corresponding to followID.
|
||||
FollowID string `bun:"type:CHAR(26),notnull,nullzero,unique:listentrylistfollow"` // Follow that the account owning this entry wants to see posts of in the timeline.
|
||||
Follow *Follow `bun:"-"` // Follow corresponding to followID.
|
||||
}
|
||||
|
||||
// RepliesPolicy denotes which replies should be shown in the list.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue