typeorm 넌누구야!

10341 단어 errorTILTIL

현재 진행하는 프로젝트가 있어서 그프로젝트중 타입스크립트를 쓰기에 시퀄라이저 말고 typeorm을 사용하면서 격은 오류를 적어봐야겟다..

  1. 데이터베이스 테이블까지는 생성이 되엇다 하지만...

아직 초기단계라 너무 적은 정보를 적은것잇까 seeder가 존재하지 않기 때문에 발생하는 오류일까?
공식문서를 아직은 다읽지 않앗지만

/Users/taegwonson/Desktop/GG/server/src/error/TypeORMError.ts:7
        super(message);
        ^
QueryFailedError: ER_TABLE_EXISTS_ERROR: Table 'users' already exists
    at QueryFailedError.TypeORMError [as constructor] (/Users/taegwonson/Desktop/GG/server/src/error/TypeORMError.ts:7:9)
    at new QueryFailedError (/Users/taegwonson/Desktop/GG/server/src/error/QueryFailedError.ts:9:9)
    at Query.<anonymous> (/Users/taegwonson/Desktop/GG/server/src/driver/mysql/MysqlQueryRunner.ts:196:37)
    at Query.<anonymous> (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/Connection.js:526:10)
    at Query._callback (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/Connection.js:488:16)
    at Query.Sequence.end (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/protocol/sequences/Sequence.js:83:24)
    at Query.ErrorPacket (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/protocol/sequences/Query.js:92:8)
    at Protocol._parsePacket (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/protocol/Protocol.js:291:23)
    at Parser._parsePacket (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/protocol/Parser.js:433:10)
    at Parser.write (/Users/taegwonson/Desktop/GG/server/node_modules/mysql/lib/protocol/Parser.js:43:10) {
  query: 'CREATE TABLE `users` (`id` int NOT NULL AUTO_INCREMENT, `emaul` varchar(255) NOT NULL, `nickname` varchar(255) NOT NULL, `image` varchar(255) NOT NULL, UNIQUE INDEX `IDX_13d10a7eb1b62f0b06c4b3df6b` (`emaul`), PRIMARY KEY (`id`)) ENGINE=InnoDB',
  parameters: undefined,

서버가 정상적으로 열렷다는 콘솔로그도 보앗는데 바로 오류를 뱉으며 서버가 오류를 던진다 오늘 저녁은 이걸 해결해보겟다.

좋은 웹페이지 즐겨찾기