Files
Sistema-Educativo-Laravel/database/migrations/2026_03_19_135756_create_docentes_table.php
T

29 lines
623 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('docentes', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('usuario_registro');
$table->unsignedBigInteger('status')->default('1');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('docentes');
}
};