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

declare(strict_types=1);

use 
IlluminateDatabaseMigrationsMigration;
use 
IlluminateDatabaseSchemaBlueprint;
use 
IlluminateSupportFacadesSchema;

final class 
CreateCountersTable extends Migration
{
    
/**
     * Migrate Up.
     */
    
public function up(): void
    
{
        if (! 
Schema::hasTable('counters')) {
            
Schema::create('counters', function (Blueprint $table) {
                
$table->increments('id');
                
$table->dateTime('period');
                
$table->integer('allhosts');
                
$table->integer('allhits');
                
$table->integer('dayhosts');
                
$table->integer('dayhits');
                
$table->integer('hosts24');
                
$table->integer('hits24');
            });
        }
    }

    
/**
     * Migrate Down.
     */
    
public function down(): void
    
{
        
Schema::dropIfExists('counters');
    }
}
Онлайн: 3
Реклама