bigIncrements('id'); $table->bigInteger('user_id')->unsigned(); $table->bigInteger('customer_id')->unsigned(); $table->longText('message')->nullable(); $table->string('image')->nullable(); $table->boolean('is_log')->nullable()->default(0); $table->bigInteger('log_id')->nullable(); $table->string('log_act')->nullable(); $table->longText('log_related_users')->nullable(); $table->string('log_name')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('customer_chats'); } }