Размер файла: 760B
<?php
use Phinx\Migration\AbstractMigration;
class CreateLogsTable extends AbstractMigration
{
/**
* Migrate Change.
*/
public function change()
{
if (! $this->hasTable('logs')) {
$table = $this->table('logs', ['collation' => env('DB_COLLATION')]);
$table
->addColumn('user_id', 'integer')
->addColumn('request', 'string', ['null' => true])
->addColumn('referer', 'string', ['null' => true])
->addColumn('ip', 'string', ['limit' => 15])
->addColumn('brow', 'string', ['limit' => 25])
->addColumn('created_at', 'integer')
->addIndex('created_at')
->create();
}
}
}