uuid('id')->primary(); $table->string('name'); $table->timestamps(); $table->softDeletes(); $table->uuid('created_by')->nullable(); $table->uuid('updated_by')->nullable(); $table->uuid('deleted_by')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('roles'); } };