web-dev-qa-db-ja.com

Laravel save()メソッドはtrueを返しますが、レコードは更新しません

Eloquentを使用してテーブルOpportunityを更新しています。

機会モデル

<?php namespace App;

use Illuminate\Database\Eloquent\Model;

class Opportunity extends Model {

protected $primaryKey = 'OpportunityID';

protected $table = 'opportunitys';
// relationships
public function csfs()
{
    return $this->hasMany('App\Csf', 'opportunityID');
}

public function benefits()
{
    return $this->hasMany('App\Benefit', 'opportunityID');
}

public function risks()
{
    return $this->hasMany('App\Risk', 'opportunityID');
}

public function projects()
{
    return $this->belongsTo('App\Project', 'projectID');
}

public static function createNewOpportunity($input, $projectID)
{
    $opportunity = new Opportunity;
    $opportunity->value = $input['value'];
    $opportunity->margin = $input['margin'];
    $opportunity->duration = $input['duration'];
    $opportunity->tender_type = $input['tender_type'];
    $opportunity->likelihood_of_success = $input['likelihood_of_success'];
    $opportunity->scope_of_work = $input['scope_of_work'];
    $opportunity->deliverables = $input['deliverables'];
    $opportunity->projectID = $projectID;
    $opportunity->high_level_background = $input['high_level_background'];
    if($opportunity->save())
        {
            Opportunity::leadSalesOppComplete($projectID);
            return true;
        };

}

public static function leadSalesOppComplete($projectID)
{
    $task = Lead::where('projectID', '=', $projectID)->first();
    $task->sales_opp = true;
    return $task->save();
}

}

public function updateOpportunity(Request $request, $id) {

IDを取得して、機会を見つけます。

$something = Opportunity::find($id);

私は死んでこれを捨てましたそして私はこれを手に入れました

Opportunity {#259 ▼
 #primaryKey: "OpportunityID"
#table: "opportunitys"
#connection: null
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: array:12 [▼
"opportunityID" => 11
"value" => 0
"margin" => 0
"tender_type" => ""
"likelihood_of_success" => 0
"high_level_background" => ""
"scope_of_work" => ""
"deliverables" => ""
"duration" => ""
"projectID" => 6
"created_at" => "2015-03-11 17:45:47"
"updated_at" => "2015-03-11 17:45:47"
 ]
  #original: array:12 [▶]
#relations: []
#hidden: []
#visible: []
#appends: []
#fillable: []
#guarded: array:1 [▶]
#dates: []
#casts: []
#touches: []
#observables: []
#with: []
#morphClass: null
+exists: true
}

どちらが正しい。次に、これらを次のように更新します

    $something->margin = $request['margin'];
    $something->duration = $request['duration'];
    $something->tender_type = $request['tender_type'];
    $something->likelihood_of_success = $request['likelihood_of_success'];
    $something->scope_of_work = $request['scope_of_work'];
    $something->deliverables = $request['deliverables'];
    $something->high_level_background = $request['high_level_background'];

今私が死んで捨てると私は得る

Opportunity {#259 ▼
#primaryKey: "OpportunityID"
#table: "opportunitys"
#connection: null
#perPage: 15
+incrementing: true
+timestamps: true
#attributes: array:12 [▼
"opportunityID" => 11
"value" => "25000"
"margin" => "0"
"tender_type" => "Proposal"
"likelihood_of_success" => "0"
"high_level_background" => ""
"scope_of_work" => ""
"deliverables" => ""
"duration" => ""
"projectID" => 6
"created_at" => "2015-03-11 17:45:47"
"updated_at" => "2015-03-11 17:45:47"
]
#original: array:12 [▼
  "opportunityID" => 11
  "value" => 0
  "margin" => 0
  "tender_type" => ""
  "likelihood_of_success" => 0
  "high_level_background" => ""
  "scope_of_work" => ""
  "deliverables" => ""
  "duration" => ""
  "projectID" => 6
  "created_at" => "2015-03-11 17:45:47"
  "updated_at" => "2015-03-11 17:45:47"
]
#relations: []
#hidden: []
#visible: []
#appends: []
#fillable: []
#guarded: array:1 [▶]
#dates: []
#casts: []
#touches: []
#observables: []
#with: []
#morphClass: null
+exists: true
}

変更を示す値のみを変更しました。

私は今走ります

$something->save();

私が死んでそれを捨てるとtrueを返します。

ただし、データベース内のレコードは変更されません。

何か案は?

いじくり回しからの2つの画像

Using Tinker to update

Using Tinker to update part 2

Var_dump after save

11
Chris Townsend

オポチュニティモデルのこの行で問題が修正されました。

Protected $primaryKey = "opportunityID";

データを取得して新しいレコードを作成できた理由を理解するのは難しいですが。

12
Chris Townsend

私は非常によく似た問題を抱えていましたが、この投稿は私を解決策に導きました。私もprimaryKeyを上書きしていました。

環境:

SELECTおよびINSERT操作は_protected $primaryKey = 'USER_ID';_で機能しますが、save()UPDATEを返しても、true操作は機能しませんでした。 。

この投稿を見つけた後、私はケースを変更しました。 _protected $primaryKey = 'user_id';_、ワミー、3つの操作すべてが機能します!なぜこれが機能するのか、もっとしっかりした説明があればいいのにと思います。テーブルを作成したとき、私は明らかに上位のUSER_ID VARCHAR2(50 BYTE) NOT NULLを使用しました。

3
kev

Laravel 5.4MySQLでも同じ問題が発生しました。私の元のコードは次のとおりです。

_$attach = new Attachments ;
$attach->site_id = ($type == 'site' ? $typeId : null) ;
...
_

NullのプライマリIDを追加することにより、save()は期待どおりに動作します。

_$attach = new Attachments ;
$attach->id = null ;
$attach->site_id = ($type == 'site' ? $typeId : null) ;
...
_
0
Anthony