personalweb

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

commit 8f855b96c5a6a56067f927ad9d786a2bcb22ceda
parent 3ef26d6e15fcee3cfa9f6c03b4789b2b968872ec
Author: Wim Dupont <wim@wimdupont.com>
Date:   Mon, 14 Feb 2022 12:26:26 +0100

added books


Former-commit-id: 3d83fb55bc4f2bc31615eb5865035f032eb2eb11
Diffstat:
Msrc/main/resources/db/migration/repeatable/R__fill_book_table.sql | 8+++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

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 @@ -11,6 +11,8 @@ INSERT INTO book VALUES (UUID(), "The C Programming Language, 2nd Edition ", "Brian Wilson Kernighan, Dennis MacAlistair Ritchie", "9780131103627", "Programming: C", null, null), (UUID(), "Computer Networking: A Top-Down Approach, Seventh Edition", "James Kurose, Keith Ross", "9781292153599", "Information Technology", null, null), + (UUID(), "Ghost in the Wires", " Kevin Mitnick, William L. Simon", "9780316212182", "Information Technology", null, null), + (UUID(), "RTFM", "Ben Clark", "9781494295509", "Information Technology", null, null), (UUID(), "Introduction to Probability, Second Edition", "Joseph K. Blitzstein, Jessica Hwang", "9781138369917", "Mathematics", null, null), (UUID(), "Introduction to Linear Algebra, Fifth Edition", "Gilbert Strang", "9780980232776", "Mathematics", null, null), @@ -31,6 +33,9 @@ INSERT INTO book VALUES (UUID(), "The virtue of selfishness", "Ayn Rand", "9780451163936", "Philosophy", null, null), (UUID(), "Free Will", "Sam Harris", "9781451683400", "Philosophy", null, null), (UUID(), "Forgotten Roots", "Karol Kolbusz", "9781790805228", "Philosophy", null, null), + (UUID(), "On the Shortness of Life", "Seneca", "9780141018812", "Philosophy", null, null), + (UUID(), "Ego Is the Enemy", "Ryan Holiday", "9781781257029", "Philosophy", null, null), + (UUID(), "Meditations", "Marcus Aurelius", "9780141395869", "Philosophy", null, null), (UUID(), "Echt Radmilo", "Radmilo Soda", "9789035141575", "Health", null, null), @@ -79,5 +84,6 @@ INSERT INTO book VALUES (UUID(), "Slaughterhouse-Five", "Kurt Vonnegut", "9780440180296", "Fiction", null, null), (UUID(), "A Clockwork Orange", "Anthony Burgess", "9780241951446", "Fiction", null, null), (UUID(), "The Melody", "Jim Grace", "9781509841370", "Fiction", null, null), - (UUID(), "Brave New World", "Aldous Huxley", "9780099477464", "Fiction", null, null) + (UUID(), "Brave New World", "Aldous Huxley", "9780099477464", "Fiction", null, null), + (UUID(), "Stoner", "John Williams", "9780099561545", "Fiction", null, null) ;