We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d048217 commit 3b1fcb3Copy full SHA for 3b1fcb3
src/main/resources/db/migrations/V1__create_books_table.sql
@@ -0,0 +1,6 @@
1
+CREATE TABLE books(
2
+ boookId BIGINT PRIMARY KEY,
3
+ bookName VARCHAR(100) NOT NULL UNIQUE,
4
+ bookAuthor VARCHAR(45) NOT NULL,
5
+ releaseDate TIMESTAMP NOT NULL
6
+);
0 commit comments