feat(MoveShelfModal): Add new shelf

This commit is contained in:
0ry5 2025-01-17 15:08:18 +01:00
parent 219b65e95f
commit b25c54915f
9 changed files with 162 additions and 46 deletions
middleware/queries

View file

@ -6,3 +6,4 @@ export { findBook } from "./findBook";
export { createBook } from "./createBook";
export { deleteBook } from "./deleteBook";
export { editBook } from "./editBook";
export { listShelves } from "./listShelves";

View file

@ -0,0 +1 @@
export const listShelves = `SELECT DISTINCT shelf FROM bookData;`;