%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/tsi-crm/database/migrations/
Upload File :
Create Path :
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
    {
        //
    }
};

Zerion Mini Shell 1.0