Skip to content

Commit aa08094

Browse files
committed
Merge remote-tracking branch 'origin/develop'
Signed-off-by: snipe <[email protected]> # Conflicts: # public/css/dist/all.css # public/css/dist/bootstrap-table.css # public/js/dist/bootstrap-table.js # public/mix-manifest.json
2 parents 9ce1e78 + a41529d commit aa08094

File tree

12 files changed

+74
-40
lines changed

12 files changed

+74
-40
lines changed

composer.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<?php
2+
3+
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
6+
7+
return new class extends Migration
8+
{
9+
/**
10+
* Run the migrations.
11+
*/
12+
public function up(): void
13+
{
14+
Schema::table('locations', function (Blueprint $table) {
15+
$table->index('manager_id');
16+
});
17+
Schema::table('users', function (Blueprint $table) {
18+
$table->index('manager_id');
19+
});
20+
}
21+
22+
/**
23+
* Reverse the migrations.
24+
*/
25+
public function down(): void
26+
{
27+
Schema::table('locations', function (Blueprint $table) {
28+
$table->dropIndex(['manager_id']);
29+
});
30+
Schema::table('users', function (Blueprint $table) {
31+
$table->dropIndex(['manager_id']);
32+
});
33+
}
34+
};

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"bootstrap-colorpicker": "^2.5.3",
3636
"bootstrap-datepicker": "^1.10.0",
3737
"bootstrap-less": "^3.3.8",
38-
"bootstrap-table": "1.23.2",
38+
"bootstrap-table": "1.23.5",
3939
"canvas-confetti": "^1.9.3",
4040
"chart.js": "^2.9.4",
4141
"clipboard": "^2.0.11",

public/css/dist/all.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/css/dist/bootstrap-table.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)