id(); $table->foreignId('user_id')->references('id')->on('users')->nullable(); $table->bigInteger('order_id')->nullable(); $table->string('images')->nullable(); $table->string('msg'); $table->text('params'); $table->string('type'); $table->string('order_type')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('tracking_actions'); } };