Kundesone/database/migrations/2024_07_09_090129_create_me...

33 lines
764 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('message', function (Blueprint $table) {
$table->id();
$table->foreignId('chat_id')->constrained('chat_group')->onDelete('cascade');
$table->string('from');
$table->string('to');
$table->text('message');
$table->string('type');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('message');
}
};