Seeding Flashcards

1
Q

마이그레이션에서

외래키를 추가하는 방법은?

A

$table->unsignedBigInteger(‘customer_id’);
$table->foreign(‘customer_id’)->references(‘id’)->on(‘customers’);

일단 칼럼을 추가하고 참조를 등록해야한다

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

시딩을 하는 이유는

A

뭐라도 테스트를 해보려면

어떤 데이터라도 있어야하기 때문이다.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

언어와 프레임워크에 상관없이

보통 테스트를 위한 가짜 데이터를

만드는 패키지의 이름을

A

Faker 라고 한다

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

라라벨에서 테스트 데이터를 만들어 주는 도구

A

팩토리

How well did you know this?
1
Not at all
2
3
4
5
Perfectly