- add CV management
This commit is contained in:
@@ -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();
|
||||
|
Reference in New Issue
Block a user