Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelsexshoptentacao.meumercado.app
/
database
/
migrations
/
Editing: 2022_03_04_175420_create_messages_table.php
<?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->bigInteger('conversation_id'); $table->bigInteger('customer_id')->nullable(); $table->bigInteger('deliveryman_id')->nullable(); $table->text('message')->nullable(); $table->text('attachment')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages'); } }
Save
Cancel