%PDF- %PDF-
| Direktori : /var/www/tsi-crm/database/migrations/ |
| Current File : /var/www/tsi-crm/database/migrations/2024_02_05_114633_contacts.php |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('contacts', function (Blueprint $table) {
$table->id();
$table->string('firstName');
$table->string('lastName');
$table->string('title');
$table->string('accountName');
$table->string('officePhone');
$table->string('mobile');
$table->string('emailAddress');
$table->string('assignedTo');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
//
}
};