«mysql-error-1146» 태그된 질문

7
Laravel 마이그레이션 파일에 데이터베이스 채우기
저는 방금 Laravel을 배우고 있으며 사용자 테이블을 만드는 작업 마이그레이션 파일이 있습니다. 마이그레이션의 일부로 사용자 레코드를 채우려 고합니다. public function up() { Schema::create('users', function($table){ $table->increments('id'); $table->string('email', 255); $table->string('password', 64); $table->boolean('verified'); $table->string('token', 255); $table->timestamps(); DB::table('users')->insert( array( 'email' => 'name@domain.com', 'verified' => true ) ); }); } 하지만 실행할 때 다음 오류가 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.