increments('id'); $table->integer('user_id')->nullable(); $table->string('user_type', 100)->nullable(); $table->integer('chatable_id')->nullable(); $table->string('chatable_type', 100)->nullable(); $table->enum('status', ['Pending','Approved'])->nullable(); $table->text('details')->nullable(); $table->softDeletes(); $table->nullableTimestamps(); }); } /* * Reverse the migrations. * * @return void */ public function down() { Schema::drop('chats'); } }