engine = 'InnoDB';
$table->integer('id', true);
$table->string('name', 192);
$table->string('label', 192)->nullable();
$table->text('description')->nullable();
$table->timestamps(6);
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('roles');
}
}