Your ROOT_URL in app.ini is http://167.99.32.63:3000/ but you are visiting http://167.99.32.63/ibrahim/BAGETWEBPANEL/src/commit/5502e10312f1346e86a7121a4cdd08e66c54c696/database/migrations/2022_08_06_124645_create_messages_table.php You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 

36 lines
854 B

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMessagesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('messages', function (Blueprint $table) {
$table->id();
$table->foreignId('conversation_id')->nullable();
$table->foreignId('sender_id')->nullable();
$table->text('message')->nullable();
$table->string('file',100)->nullable();
$table->boolean('is_seen')->default(0);
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('messages');
}
}