Added #18767 - uploads for companies and departments

This commit is contained in:
snipe
2026-03-26 16:02:07 +00:00
parent ef22fb256b
commit 616d0f00f9
16 changed files with 137 additions and 60 deletions
@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('companies', function (Blueprint $table) {
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
}
};