id(); $table->string('name')->unique(); $table->string('legal_name')->nullable(); $table->string('ticker')->nullable(); $table->string('sector')->nullable(); $table->string('country', 2)->default('DE'); $table->string('headquarters')->nullable(); $table->string('kyc_risk_level')->default('medium'); $table->text('summary')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('companies'); } };