Просмотр файла database/migrations/20180420180012_create_counters_table.php

Размер файла: 800B
<?php

use Phinx\Migration\AbstractMigration;
use Phinx\Db\Adapter\MysqlAdapter;

class CreateCountersTable extends AbstractMigration
{
    /**
     * Change Method.
     */
    public function change()
    {
        if (! $this->hasTable('counters')) {
            $table = $this->table('counters', ['collation' => env('DB_COLLATION')]);
            $table
                ->addColumn('hours', 'integer')
                ->addColumn('days', 'integer')
                ->addColumn('allhosts', 'integer')
                ->addColumn('allhits', 'integer')
                ->addColumn('dayhosts', 'integer')
                ->addColumn('dayhits', 'integer')
                ->addColumn('hosts24', 'integer')
                ->addColumn('hits24', 'integer')
                ->create();
        }
    }
}