Skip to content

Commit edd1066

Browse files
committed
fix: fixes primary key name
1 parent 3b1fcb3 commit edd1066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/db/migrations/V1__create_books_table.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CREATE TABLE books(
2-
boookId BIGINT PRIMARY KEY,
2+
bookId BIGINT PRIMARY KEY,
33
bookName VARCHAR(100) NOT NULL UNIQUE,
44
bookAuthor VARCHAR(45) NOT NULL,
55
releaseDate TIMESTAMP NOT NULL

0 commit comments

Comments
 (0)