dbfdg bigInteger('id'); $table->string('type'); $table->bigInteger('from_id'); $table->bigInteger('to_id'); $table->string('body',5000)->nullable(); $table->string('attachment')->nullable(); $table->boolean('seen')->default(false); $table->timestamps(); $table->primary('id'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('messages'); } }