Файл: database/migrations/2018_04_20_180012_create_counters_table.php
Строк: 30
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
return new class extends Migration {
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');
});
}
}
public function down(): void
{
Schema::dropIfExists('counters');
}
};