2026-05-13 11:20:33 +02:00
|
|
|
<?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');
|
2026-06-19 18:40:54 +02:00
|
|
|
$table->string('apodo')->nullable();
|
|
|
|
|
$table->enum('estado', ['activo', 'inactivo', 'suspendido'])->default('activo');
|
2026-05-13 11:20:33 +02:00
|
|
|
$table->string('tax_id')->nullable()->unique();
|
|
|
|
|
$table->string('address')->nullable();
|
|
|
|
|
$table->string('phone')->nullable();
|
|
|
|
|
$table->string('email')->nullable();
|
|
|
|
|
$table->string('website')->nullable();
|
|
|
|
|
$table->enum('type', ['owner', 'constructor', 'subcontractor', 'consultant', 'supplier', 'other'])->default('other');
|
|
|
|
|
$table->text('notes')->nullable();
|
2026-06-19 18:40:54 +02:00
|
|
|
$table->string('logo_path')->nullable();
|
2026-05-13 11:20:33 +02:00
|
|
|
$table->timestamps();
|
|
|
|
|
$table->softDeletes();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Reverse the migrations.
|
|
|
|
|
*/
|
|
|
|
|
public function down(): void
|
|
|
|
|
{
|
|
|
|
|
Schema::dropIfExists('companies');
|
|
|
|
|
}
|
|
|
|
|
};
|