40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use Illuminate\Support\Facades\Schema;
 | 
						|
use Illuminate\Database\Schema\Blueprint;
 | 
						|
use Illuminate\Database\Migrations\Migration;
 | 
						|
 | 
						|
return new class extends Migration
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Run the migrations.
 | 
						|
     */
 | 
						|
    public function up(): void
 | 
						|
    {
 | 
						|
        Schema::create('backups', function (Blueprint $table) {
 | 
						|
            $table->bigIncrements('id');
 | 
						|
            $table->unsignedInteger('server_id');
 | 
						|
            $table->char('uuid', 36);
 | 
						|
            $table->string('name');
 | 
						|
            $table->text('ignored_files');
 | 
						|
            $table->string('disk');
 | 
						|
            $table->string('sha256_hash')->nullable();
 | 
						|
            $table->integer('bytes')->default(0);
 | 
						|
            $table->timestamp('completed_at')->nullable();
 | 
						|
            $table->timestamps();
 | 
						|
            $table->softDeletes();
 | 
						|
 | 
						|
            $table->unique('uuid');
 | 
						|
            $table->foreign('server_id')->references('id')->on('servers')->onDelete('cascade');
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Reverse the migrations.
 | 
						|
     */
 | 
						|
    public function down(): void
 | 
						|
    {
 | 
						|
        Schema::dropIfExists('backups');
 | 
						|
    }
 | 
						|
};
 |