id(); $table->string('token', 50); $table->string('recipient', 255); $table->string('email', 255); $table->string('phone_number', 15); $table->json('locations'); $table->integer('views')->nullable()->default(0); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('cvs'); } };