| 58 | } |
| 59 | |
| 60 | type Object struct { |
| 61 | Hash string `gorm:"primaryKey;type:varchar(255)"` |
| 62 | Type string `gorm:"type:varchar(255)"` |
| 63 | Blob []byte |
| 64 | Size int64 `gorm:"type:bigint"` |
| 65 | URL string `gorm:"primaryKey;type:varchar(255)"` |
| 66 | } |
| 67 | |
| 68 | type Reference struct { |
| 69 | Name string `gorm:"primaryKey;type:varchar(255)"` |
nothing calls this directly
no outgoing calls
no test coverage detected