- add CV management

This commit is contained in:
2023-06-16 13:41:39 +02:00
parent 9518d6a811
commit 390c5b8087
8 changed files with 173 additions and 3 deletions

View File

@@ -12,9 +12,10 @@ return new class extends Migration
{
Schema::create('cvs', function (Blueprint $table) {
$table->id();
$table->string('token', 50);
$table->string('recipient', 255);
$table->string('email', 255);
$table->string('phone-number', 15);
$table->string('phone_number', 15);
$table->json('locations');
$table->integer('views')->nullable()->default(0);
$table->timestamps();