You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE book_note (
id SERIAL PRIMARY KEY,
note_content TEXT NOT NULL,
note_date DATE NOT NULL,
book_id INT,
FOREIGN KEY (book_id) REFERENCES book(id)
);