mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 14:36:17 +00:00
Built-in File Manager (#458)
This commit is contained in:
32
database/factories/FileFactory.php
Normal file
32
database/factories/FileFactory.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Factories;
|
||||
|
||||
use App\Models\File;
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Carbon;
|
||||
|
||||
class FileFactory extends Factory
|
||||
{
|
||||
protected $model = File::class;
|
||||
|
||||
public function definition(): array
|
||||
{
|
||||
return [
|
||||
'user_id' => $this->faker->randomNumber(), //
|
||||
'server_id' => $this->faker->randomNumber(),
|
||||
'server_user' => $this->faker->word(),
|
||||
'path' => $this->faker->word(),
|
||||
'type' => 'file',
|
||||
'name' => $this->faker->name(),
|
||||
'size' => $this->faker->randomNumber(),
|
||||
'links' => $this->faker->randomNumber(),
|
||||
'owner' => $this->faker->word(),
|
||||
'group' => $this->faker->word(),
|
||||
'date' => $this->faker->word(),
|
||||
'permissions' => $this->faker->word(),
|
||||
'created_at' => Carbon::now(),
|
||||
'updated_at' => Carbon::now(),
|
||||
];
|
||||
}
|
||||
}
|
33
database/migrations/2025_02_02_124012_create_files_table.php
Normal file
33
database/migrations/2025_02_02_124012_create_files_table.php
Normal 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');
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user