Run go fmt on db/paste.go

This commit is contained in:
Yorick van Pelt 2023-04-30 18:17:18 +02:00
parent 8e949f837b
commit e055d210ef
No known key found for this signature in database
GPG Key ID: A36E70F9DC014A15
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ type Paste struct {
ID uint `gorm:"primaryKey"`
Type PasteType `gorm:"index"`
State PasteState `gorm:"index"`
CreatedBy uint `gorm:"index"`
CreatedBy uint `gorm:"index"`
Content []byte
Key string `gorm:"uniqueIndex"`
DeleteToken string