id(); $table->integer("approval_flow_id")->nullable(); $table->string("object_type")->nullable(); $table->string("object_id")->nullable()->index(); $table->integer("node_level")->nullable(); $table->string("users")->nullable(); $table->integer("created_by"); $table->text("remark")->nullable(); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('approvals'); } };