bigIncrements('id'); $table->bigInteger('to_id')->unsigned()->nullable(); $table->bigInteger('from_id')->unsigned()->nullable(); $table->string('object_type')->nullable(); $table->json('data')->nullable(); $table->timestamp('processed_at')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('activities'); } }