personalweb

Archived
git clone git://git.wimdupont.com/personalweb.git
Log | Files | Refs | README | LICENSE

commit b424a2e1fe13231e474be5ffaad114171429565c
parent 8d1ec220793f9db97709df95baf61a090ec949cb
Author: Wim Dupont <wim@wimdupont.com>
Date:   Sat, 21 Oct 2023 13:03:53 +0200

added books


Former-commit-id: 2e849b25bd8126e74d7ea794ecb1f063ef30e233
Diffstat:
Msrc/main/resources/db/migration/repeatable/R__fill_book_table.sql | 10++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/main/resources/db/migration/repeatable/R__fill_book_table.sql b/src/main/resources/db/migration/repeatable/R__fill_book_table.sql @@ -1,7 +1,7 @@ DELETE FROM book; INSERT INTO book VALUES - (UUID(), "Effective Java, Second Edition", "Joshua Block", "9780321356680", "Programming: Java", null, null), + (UUID(), "Effective Java, Second Edition", "Joshua Bloch", "9780321356680", "Programming: Java", null, null), (UUID(), "The Elements of Java Style", "Allan Vermeulen, Scott W. Ambler", "9780521777681", "Programming: Java", null, null), (UUID(), "Core Java for the Impatient", "Cay S. Horstmann", "9780321996329", "Programming: Java", null, null), (UUID(), "Java Concurrency in Practice", "Brian Goetz, Tim Peierls", "9780321349606", "Programming: Java", null, null), @@ -47,6 +47,7 @@ INSERT INTO book VALUES (UUID(), "Brief History of Time: From the Big Bang to Black Holes", "Stephen Hawking", "9780857501004", "Science", null, null), (UUID(), "If This Is a Man/The Truce", "Primo Levi", "9780349100135", "Biography", null, null), + (UUID(), "On Writing", "Stephen King", "9781444723250", "Biography", null, null), (UUID(), "Elantris", "Brandon Sanderson", "9781473217706", "Fantasy", null, null), (UUID(), "Warbreaker", "Brandon Sanderson", "9780765360038", "Fantasy", null, null), @@ -64,6 +65,7 @@ INSERT INTO book VALUES (UUID(), "The Bands of Mourning", "Brandon Sanderson", "9781473208278", "Fantasy", "Mistborn", 6), (UUID(), "The Lost Metal", "Brandon Sanderson", "9781473215276", "Fantasy", "Mistborn", 7), (UUID(), "Tress of the Emerald Sea", "Brandon Sanderson", "9781250899651", "Fantasy", null, null), + (UUID(), "Yumi and the Nightmare Painter", "Brandon Sanderson", "9781399613446", "Fantasy", null, null), (UUID(), "Arcanum Unbounded", "Brandon Sanderson", "9781473225930", "Fantasy", null, null), (UUID(), "The Slow Regard of Silent Things", "Patrick Rothfuss", "9781473209336", "Fantasy", null, null), (UUID(), "The Name of the Wind", "Patrick Rothfuss", "9780575081406", "Fantasy", "The Kingkiller Chronicle", 1), @@ -97,5 +99,9 @@ INSERT INTO book VALUES (UUID(), "The Melody", "Jim Grace", "9781509841370", "Fiction", null, null), (UUID(), "Brave New World", "Aldous Huxley", "9780099477464", "Fiction", null, null), (UUID(), "Stoner", "John Williams", "9780099561545", "Fiction", null, null), - (UUID(), "1Q84", "Haruki Murakami", "9780099578079", "Fiction", "1Q84 #1-3", null) + (UUID(), "1Q84", "Haruki Murakami", "9780099578079", "Fiction", "1Q84 #1-3", null), + + (UUID(), "Carrie", "Stephen King", "9780307743664", "Horror", null, null), + (UUID(), "Pet Sematary", "Stephen King", "9781444708134", "Horror", null, null) + ;