View file upgrade/migrations/20161103231844_rename_fields_in_admlog.php

File size: 600B
<?php

use Phinx\Migration\AbstractMigration;

class RenameFieldsInAdmlog extends AbstractMigration
{
    /**
     * Migrate Change.
     */
    public function change()
    {
        $table = $this->table('admlog');
        $table->renameColumn('admlog_id', 'id');
        $table->renameColumn('admlog_user', 'user');
        $table->renameColumn('admlog_request', 'request');
        $table->renameColumn('admlog_referer', 'referer');
        $table->renameColumn('admlog_ip', 'ip');
        $table->renameColumn('admlog_brow', 'brow');
        $table->renameColumn('admlog_time', 'time');
    }
}