remove onloan column
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2022-05-07 15:35:07 -04:00
parent 2814c5dc68
commit e8388b979c
8 changed files with 7 additions and 39 deletions

View File

@@ -40,7 +40,6 @@ func CSVToBooks(r io.Reader) ([]media.Book, error) {
Signed: row[hmap["signed"]] == "yes", // convert from known string to bool
Description: row[hmap["description"]],
Notes: row[hmap["notes"]],
OnLoan: row[hmap["onloan"]],
CoverURL: row[hmap["coverurl"]],
}
books = append(books, b)