id(); $table->integer("approval_id")->nullable(); $table->string("belongs_type")->nullable(); $table->string("belongs_id")->nullable(); $table->text("updates")->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('approval_items'); } }