id(); $table->string('brand'); $table->string('serie')->unique(); $table->boolean('status')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('devices'); } };