View file database/migrations/2018_04_20_180014_create_counters31_table.php

File size: 665B
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration {
    public function up(): void
    {
        if (! Schema::hasTable('counters31')) {
            Schema::create('counters31', function (Blueprint $table) {
                $table->increments('id');
                $table->dateTime('period');
                $table->integer('hosts');
                $table->integer('hits');

                $table->unique('period');
            });
        }
    }

    public function down(): void
    {
        Schema::dropIfExists('counters31');
    }
};