Tiny Bunny
[TIL] Week 9 장바구니 API
·
🕊️ DevCourse/Backend
🛒 장바구니 테이블 생성 CREATE TABLE Bookshop.cartItems ( id INT NOT NULL, book_id INT NOT NULL, num INT NOT NULL DEFAULT 1, user_id INT NOT NULL, PRIMARY KEY (id)} book_id는 books 테이블의 id를, user_id는 users테이블의 id를 FK로 삼고 있으니 지정해주어야 한다.그런데 에러가 발생했다.  🚨 Operation failed: There was an error while applying the SQL script to the database. ERROR 1005: Can't create table Bookshop.cartItems (errno..
민리버
'제약조건' 태그의 글 목록