id(); $table->String('role_name'); $table->String('role_code'); $table->String('description'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('roles'); } }