mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-12 14:57:29 -06:00
moar work
This commit is contained in:
parent
1710158b39
commit
d1ca4a1219
5 changed files with 120 additions and 40 deletions
19
internal/db/model/block.go
Normal file
19
internal/db/model/block.go
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package model
|
||||
|
||||
import "time"
|
||||
|
||||
// Block refers to the blocking of one account by another.
|
||||
type Block struct {
|
||||
// id of this block in the database
|
||||
ID string `pg:"type:uuid,default:gen_random_uuid(),pk,notnull"`
|
||||
// When was this block created
|
||||
CreatedAt time.Time `pg:"type:timestamp,notnull,default:now()"`
|
||||
// When was this block updated
|
||||
UpdatedAt time.Time `pg:"type:timestamp,notnull,default:now()"`
|
||||
// Who created this block?
|
||||
AccountID string `pg:",notnull"`
|
||||
// Who is targeted by this block?
|
||||
TargetAccountID string `pg:",notnull"`
|
||||
// Activitypub URI for this block
|
||||
URI string
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue