id(); $table->bigInteger('doer_id'); $table->bigInteger('action'); $table->bigInteger('target_id')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('actions'); } };