0

私はlaravel 6.2を使用しています。接続はSQLです。「1 対多の関係」で 2 つのテーブルを作成しています。テーブル 'users' および 'managers'。各ユーザーには 1 人のマネージャーがあり、各マネージャーには複数のユーザーがいます。

以下は、ユーザー テーブルの移行です。

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateUsersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('users', function (Blueprint $table) {
            $table->bigIncrements('id');
            $table->string('name');
            $table->string('email')->unique();
            $table->timestamp('email_verified_at')->nullable();
            $table->string('password');
            $table->rememberToken();
            $table->integer('totalBalance')->default(21);
            $table->integer('annualBalance')->default(15);
            $table->integer('casualBalance')->default(6);
            $table->timestamps(); 


        });

        Schema::table('users', function (Blueprint $table) {
            $table->bigInteger('manager_id')->unsigned()->index();
            $table->foreign('manager_id')->references('id')->on('managers')
            ->onDelete('cascade');

        });


    }



    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('users');
    }
}

以下は、マネージャーの移行テーブルです。

<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class CreateManagersTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('managers', function (Blueprint $table) {

            $table->bigIncrements('id');
            $table->string('name');
            $table->string('email')->unique();
            $table->timestamp('email_verified_at')->nullable();
            $table->string('password');
            $table->rememberToken();
            $table->timestamps();   
        });
    }



    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::dropIfExists('managers');
    }
}

以下はユーザーモデルです:

<?php

namespace App;


use Tymon\JWTAuth\Contracts\JWTSubject;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

class User extends Authenticatable implements JWTSubject

{
    use Notifiable;

    /**
     * The attributes that are mass assignable.
     *
     * @var array
     */
    protected $fillable = [
        'name', 'email', 'password',
    ];

    /**
     * The attributes that should be hidden for arrays.
     *
     * @var array
     */
    protected $hidden = [
        'password', 'remember_token',
    ];

    /**
     * The attributes that should be cast to native types.
     *
     * @var array
     */
    protected $casts = [
        'email_verified_at' => 'datetime',
    ];

     // Rest omitted for brevity
    /**
     * Get the identifier that will be stored in the subject claim of the JWT.
     *
     * @return mixed
     */
    public function getJWTIdentifier()
    {
        return $this->getKey();
    }
    /**
     * Return a key value array, containing any custom claims to be added to the JWT.
     *
     * @return array
     */
    public function getJWTCustomClaims()
    {
        return [];
    }
    public function setPasswordAttribute($value) {
        $this->attributes['password'] = bcrypt($value);
    }

    public function manager()
    {
        return $this->belongsTo('App\Manager');
    }
}

以下はマネージャーモデルです。

<?php

namespace App;

use Illuminate\Database\Eloquent\Model;

class Manager extends Model
{
    protected $primaryKey = 'id';

    public function users()
    {
        return $this->hasMany('App\User');
    }
}

以下のエラーが表示されます。

ここに画像の説明を入力

私は多くのことを試しましたが、オンラインの他の質問から見た、id のタイプの変更 (BigInteger と整数から)、database.php のエンジンを「InnoDB」に変更する、ユーザー モデルを 2 つの部分に分割する (外部キーを追加するための 2 番目の部分)。

私がオンラインで見たものの 1 つ (ただし、実装方法がわかりませんでした) は、タイムスタンプの順序を変更することです。

なにか提案を?

4

1 に答える 1