feat: chat en tiempo real bidireccional funcionando con Reverb
This commit is contained in:
+6
-3
@@ -13,9 +13,12 @@ return new class extends Migration
|
||||
{
|
||||
Schema::create('messages', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('conversation_id')->constrained()->cascadeOnDelete();
|
||||
$table->foreignId('user_id')->constrained()->cascadeOnDelete();
|
||||
$table->text('message');
|
||||
$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();
|
||||
});
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
<?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('friendships', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('sender_id')->constrained('users')->onDelete('cascade');
|
||||
$table->foreignId('receiver_id')->constrained('users')->onDelete('cascade');
|
||||
$table->enum('status', ['pending', 'accepted', 'rejected', 'blocked'])->default('pending');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Schema::dropIfExists('friendships');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user