Built-in File Manager (#458)

This commit is contained in:
Saeed Vaziry
2025-02-16 19:56:21 +01:00
committed by GitHub
parent 75e554ad74
commit e2b9d18a71
17 changed files with 907 additions and 29 deletions

View File

@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('files', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('user_id');
$table->unsignedBigInteger('server_id');
$table->string('server_user');
$table->string('path');
$table->string('type');
$table->string('name');
$table->unsignedBigInteger('size');
$table->unsignedBigInteger('links');
$table->string('owner');
$table->string('group');
$table->string('date');
$table->string('permissions');
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('files');
}
};