inventario/database/migrations/2026_02_07_205416_create_clientes_table.php
jesusfb a31af58b8f
All checks were successful
Deploy Laravel Directo / deploy (push) Successful in 5s
first commit
2026-04-24 17:34:00 -07:00

33 lines
737 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('clientes', function (Blueprint $table) {
$table->id();
$table->foreignId('company_id')->constrained()->cascadeOnDelete();
$table->string('nombre');
$table->string('email')->nullable();
$table->string('telefono')->nullable();
$table->text('direccion')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('clientes');
}
};