36 lines
962 B
PHP
36 lines
962 B
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('companies', function (Blueprint $table) {
|
|
$table->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');
|
|
}
|
|
};
|