bigIncrements('id'); $table->string('name', 60); $table->string('description')->nullable(); $table->unsignedBigInteger('creator_id'); $table->timestamps(); $table->foreign('creator_id')->references('id')->on('users')->onDelete('restrict'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('masters'); } }