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