id(); $table->string('name'); $table->string('location')->nullable(); $table->foreignId('display_version_id')->nullable()->constrained()->nullOnDelete(); $table->boolean('is_active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('displays'); } };