Вход Регистрация
Файл: database/migrations/2018_04_20_180044_create_spam_table.php
Строк: 29
<?php

use IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

return new class extends 
Migration {
    public function 
up(): void
    
{
        if (! 
Schema::hasTable('spam')) {
            
Schema::create('spam', function (Blueprint $table) {
                
$table->increments('id');
                
$table->string('relate_type', 20);
                
$table->integer('relate_id');
                
$table->integer('user_id');
                
$table->string('path', 100)->nullable();
                
$table->dateTime('created_at')->nullable();

                
$table->index('created_at');
                
$table->index(['relate_type', 'relate_id']);
            });
        }
    }

    public function 
down(): void
    
{
        
Schema::dropIfExists('spam');
    }
};
Онлайн: 3
Реклама