我试图在Laravel 5.6中手动设置主键值,但是在保存记录时返回0。 这是我的控制器功能代码。
$next = collect(DB::select('SELECT IFNULL(MAX(IFNULL(lvl1,0)),0)+10 AS NEXTVAL FROM coa_lvl1'))->first()->NEXTVAL;
$lvl1_id = new CoaLvl1();
$lvl1_id->lvl1 = $next;
$this->lvl1->create(array_merge($request->all(),['lvl1' => $next , 'lvl1_code' => $request->get('group_id').'/'.$next]));
针对coa_lvl1的迁移:
Schema::create('coa_lvl1', function (Blueprint $table) {
$table->tinyInteger('group_id');
$table->integer('lvl1')->unsigned();
$table->tinyInteger('lvl1_code');
$table->string('lvl1_name',300);
$table->integer('created_by')->nullable(false);
$table->timestamp('created_date')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->integer('last_update_by');
$table->timestamp('last_update_date')->default(DB::raw('0 ON UPDATE CURRENT_TIMESTAMP'));
$table->string('active_flag',1)->default('1');
$table->primary('lvl1');
$table->foreign('group_id')
->references('group_id')
->on('coa_group')
->onDelete('cascade');
});
在我的模型中
protected $table = 'coa_lvl1';
protected $primaryKey = 'lvl1';
public $incrementing = false;
protected $blameable = array('created','updated');
protected $fillable = ['group_id','lvl1_code','lvl1_name','active_flag'];
public $timestamps = false;
public function coaGroup()
{
return $this->belongsTo(CoaGroup::class, 'group_id');
}
public function coaLvl1()
{
return $this->hasMany(CoaLvl2::class,'lvl1');
}
$ next是我要设置的PrimaryKey值
答案 0 :(得分:1)
read_queue
我的模特就是这样
Schema::create('coa_lvl1', function (Blueprint $table) {
$table->tinyInteger('group_id');
$table->integer('lvl1')->primary(); //$table->integer('lvl1')->unsigned();
$table->tinyInteger('lvl1_code');
$table->string('lvl1_name',300);
$table->integer('created_by')->nullable(false);
$table->timestamp('created_date')->default(DB::raw('CURRENT_TIMESTAMP'));
$table->integer('last_update_by');
$table->timestamp('last_update_date')->default(DB::raw('0 ON UPDATE CURRENT_TIMESTAMP'));
$table->string('active_flag',1)->default('1');
$table->foreign('group_id')
->references('group_id')
->on('coa_group')
->onDelete('cascade');
});
答案 1 :(得分:0)
通过在受保护的主键中添加主键
$fillable = ['lvl1','group_id','lvl1_code','lvl1_name','active_flag'];
我认为这不是正确的方法,但对我有用