| 314 | ` |
| 315 | |
| 316 | type SetFileMetaParams struct { |
| 317 | ID string |
| 318 | GraphID string |
| 319 | FileID string |
| 320 | BlobPath string |
| 321 | Checksum []byte |
| 322 | Size int64 |
| 323 | LastModifiedTx int64 |
| 324 | } |
| 325 | |
| 326 | func (q *Queries) SetFileMeta(ctx context.Context, arg SetFileMetaParams) error { |
| 327 | _, err := q.db.ExecContext(ctx, setFileMeta, |
nothing calls this directly
no outgoing calls
no test coverage detected