반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- K8S
- 스프링공부
- JPA예제
- JPA
- 스프링
- 플러터 공부
- 카프카
- nestjs
- JPA 공부
- 기술면접공부
- 코테준비
- JPA공부
- querydsl
- Flutter
- Kafka
- 자바공부
- 코테공부
- 프로그래머스
- 스프링 공부
- DDD
- 플러터 개발
- 자료구조공부
- nestjs공부
- Axon framework
- nestjs스터디
- 알고리즘공부
- 스프링부트
- 스프링부트공부
- 기술공부
- JPA스터디
Archives
- Today
- Total
목록nests 포스팅 (1)
DevBoi
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/t1B9T/btshFarDR1b/Wae6LIkKKMFIRlvptKjg71/img.png)
우선 게시물에 대한 Entity를 아래와 같이 바꿨다. import { BaseEntity, Column, Entity, OneToMany, PrimaryGeneratedColumn, } from 'typeorm'; import { Record } from './record.entity'; @Entity() export class Board extends BaseEntity { @PrimaryGeneratedColumn() uid: number; @Column() title: string; @Column({ unique: true }) userId: string; @Column() nickname: string; @Column() password: string; } board.repository.ts i..
Develop/[NestJs]
2023. 5. 30. 00:17