36230-vm/database/migrations/2025_11_25_001507_create_departamentos_table.php
2025-11-25 00:27:52 +00:00

29 lines
591 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('departamentos', function (Blueprint $table) {
$table->id();
$table->string('nombre')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('departamentos');
}
};