id(); $table->uuid('uuid'); $table->tinyInteger('status')->default(0); $table->string('message'); $table->string('registration_token')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('applications'); } };