매번 시퀄라이즈를 사용하는데 이번에 create 와 update의 차이점이 궁금해서 알게된 것을 정리해 본다. 1) ProUser.create({}) .then((result) => { result.data // then에 대한 프로퍼티에 접근 가능! }) 2) ProUser.update({}) .then((result) => { result.data // then에 대한 프로퍼티에 접근 불가능! => update에서는 bool 타입으로 성공/실패에 따라서 1/0 값만 리턴함! })