"goals"와 "partgoals"라는 두 개의 테이블이있는 데이터베이스를 만들었습니다. 실제적인 사용은 저축 목표 (돈)를 만들고 그 길을 따라 이정표를 세우는 것입니다 (부분 목표). Partgoals가 분명히 특정 목표에 연결되기를 바랍니다. 관계가 생성되지만 시드 데이터를 만들려고 할 때 문제가 발생합니다. 이 같은Laravel 4, 관계를 사용하여 테이블에 시드 데이터를 만드는 방법은 무엇입니까?
<?php
class GoalsTableSeeder extends Seeder {
public function run()
{
DB::table('goals')->delete();
$goals = array(
array(
'max' => 1850000,
'avgsav' => 3500,
'duedate' => date('2015-03-15'),
'created_at' => new DateTime,
'updated_at' => new DateTime,
),
array(
'max' => 1100000,
'avgsav' => 5000,
'duedate' => date('2013-11-15'),
'created_at' => new DateTime,
'updated_at' => new DateTime,
)
);
DB::table('goals')->insert($goals);
}
}
그리고 내 partgoals 테이블 (PartgoalsTableSeeder.php) :
<?php
class PartgoalsTableSeeder extends Seeder {
public function run()
{
DB::table('partgoals')->delete();
$partgoals = array(
array(
'id' => 1,
'milestone' => 100000,
'duedate' => date('2014-03-15'),
'created_at' => new DateTime,
'updated_at' => new DateTime,
),
array(
'id' => 1,
'milestone' => 20000,
'duedate' => date('2013-06-15'),
'created_at' => new DateTime,
'updated_at' => new DateTime,
),
array(
'id' => 2,
'milestone' => 400000,
'duedate' => date('2013-09-15'),
'created_at' => new DateTime,
'updated_at' => new DateTime,
),
array(
'id' => 2,
'milestone' => 200000,
'duedate' => date('2014-10-15'),
'created_at' => new DateTime,
'updated_at' => new DateTime,
)
);
DB::table('partgoals')->insert($partgoals);
}
}
마이그레이션 테이블
내 목표는 테이블이 같은 두 가지 목표 (GoalsTableSeeder.php)를 설정하는 것입니다
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateGoalsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('goals', function(Blueprint $table)
{
$table->increments('id');
$table->integer('max');
$table->float('avgsav');
$table->date('duedate');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('goals');
}
}
partgoals에 대한 마이그레이션 테이블 :
01 "목표"에 대한<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePartgoalsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('partgoals', function(Blueprint $table)
{
$table->foreign('id')
->references('id')->on('goals')
->onDelete('cascade');
$table->increments('id');
$table->float('milestone');
$table->date('duedate')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('partgoals');
}
}
내가 뭘 잘못하고 있니? 저는 Laravel (및 Laravel 4)을 처음 사용합니다.
두 개의 테이블에 대한 씨앗을 생성하는 방법에 대한이 문서를 참조 할 수 있습니다를 다음과 같이 ModelFactory.php
그런 다음 시더 클래스가 될 수 있습니다 당신이 가진 문제를 설명합니다. 특정 오류 메시지/경고가 있습니까? 귀하의 데이터가 존재하지 않거나 예상대로입니까? – Chris
죄송합니다, 처음에는 더 이상 보이지 않는 것 같았습니다.) 콘솔에서이 문제가 발생했습니다 : [예외] SQLSTATE [23000] : 무결성 제약 조건 위반 : 1062 'PRIMARY'키에 중복 항목 '1'(SQL : 을 삽입하십시오. (예 : id, milestone, duedate, created_at, updated_at) 값 (?,?,?,?), (?,? ,?,?,?) (?,?,?,?), (?,?,?,?,?)) 삽입하려는 데이터와 함께. –