id(); $table->string("type")->nullable(); $table->timestamp("expire_at")->nullable(); $table->tinyInteger("status")->default(0); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('approval'); } }