36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?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::create('computers', function (Blueprint $table) {
 | |
|             $table->id();
 | |
|             $table->unsignedBigInteger('user_id');
 | |
|             $table->foreign('user_id')->references('id')->on('users');
 | |
|             $table->string('name', length: 256);
 | |
|             $table->string('cpu', length: 256)->nullable();
 | |
|             $table->string('ram', length: 256)->nullable();
 | |
|             $table->string('motherboard', length: 256)->nullable();
 | |
|             $table->string('gpu', length: 256)->nullable();
 | |
|             $table->string('additional_info', length: 256)->nullable();
 | |
|             $table->timestamps();
 | |
|         });
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Reverse the migrations.
 | |
|      */
 | |
|     public function down(): void
 | |
|     {
 | |
|         Schema::dropIfExists('computers');
 | |
|     }
 | |
| };
 |