3
0
mirror of https://github.com/snipe/snipe-it.git synced 2025-10-29 19:31:41 +00:00

Merge remote-tracking branch 'origin/develop'

This commit is contained in:
snipe 2025-10-08 10:38:08 +01:00
commit 85a208526b
2 changed files with 7 additions and 1 deletions

View File

@ -232,6 +232,12 @@ return [
'note' => '',
'display' => true,
],
[
'permission' => 'licenses.checkin',
'label' => 'Checkin ',
'note' => '',
'display' => true,
],
[
'permission' => 'licenses.keys',
'label' => 'View License Keys',

View File

@ -22,7 +22,7 @@ return new class extends Migration
public function down(): void
{
Schema::table('action_logs', function (Blueprint $table) {
$table->dropIndex('deleted_at');
$table->dropIndex(['deleted_at']);
});
}
};