Файл: database/migrations/2018_04_20_180011_create_contacts_table.php
Строк: 32
<?php
declare(strict_types=1);
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
final class CreateContactsTable extends Migration
{
    /**
     * Migrate Up.
     */
    public function up(): void
    {
        if (! Schema::hasTable('contacts')) {
            Schema::create('contacts', function (Blueprint $table) {
                $table->increments('id');
                $table->integer('user_id');
                $table->integer('contact_id');
                $table->text('text')->nullable();
                $table->integer('created_at');
                $table->index('user_id');
                $table->index('created_at');
            });
        }
    }
    /**
     * Migrate Down.
     */
    public function down(): void
    {
        Schema::dropIfExists('contacts');
    }
}