id(); $table->string('mobile')->unique(); $table->string('fcm_token')->nullable()->default(null); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('parents'); } }