uuid('id')->primary(); $table->string('login')->unique(); $table->string('password'); $table->boolean('is_active')->default(true); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('users'); } };