Skip to content

Commit 85a2085

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents cd266a6 + c3ac0a7 commit 85a2085

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

config/permissions.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,12 @@
232232
'note' => '',
233233
'display' => true,
234234
],
235+
[
236+
'permission' => 'licenses.checkin',
237+
'label' => 'Checkin ',
238+
'note' => '',
239+
'display' => true,
240+
],
235241
[
236242
'permission' => 'licenses.keys',
237243
'label' => 'View License Keys',

database/migrations/2025_06_04_101736_add_deleted_at_index_to_action_logs.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function up(): void
2222
public function down(): void
2323
{
2424
Schema::table('action_logs', function (Blueprint $table) {
25-
$table->dropIndex('deleted_at');
25+
$table->dropIndex(['deleted_at']);
2626
});
2727
}
2828
};

0 commit comments

Comments
 (0)