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

use IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

return new class extends 
Migration {
    public function 
up(): void
    
{
        if (! 
Schema::hasTable('online')) {
            
Schema::create('online', function (Blueprint $table) {
                
$table->string('uid'32)->primary();
                
$table->ipAddress('ip');
                
$table->string('brow'25);
                
$table->integer('user_id')->nullable();
                
$table->dateTime('updated_at')->nullable();
            });
        }
    }

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