Files
Sistema-Educativo-Laravel/database/migrations/2026_04_25_235119_create_messages_table.php

34 lines
1011 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('messages', function (Blueprint $table) {
$table->id();
$table->foreignId('user_id')->constrained()->onDelete('cascade');
$table->foreignId('receiver_id')->constrained('users')->onDelete('cascade');
$table->text('body')->nullable(); // nullable porque puede ser solo archivo
$table->string('attachment')->nullable(); // ruta del archivo
$table->string('attachment_type')->nullable(); // 'image', 'audio', 'video'
$table->timestamp('read_at')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('messages');
}
};