pulsarvp/vps-tools

View on GitHub
src/modules/log/migrations/m190204_122452_category.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

    use vps\tools\db\Migration;

    class m190204_122452_category extends Migration
    {
        public function safeUp ()
        {
            $this->addColumn('log', 'category', $this->string(255)->null()->after('type'));
            $this->update('log', [ 'category' => 'admin' ]);
        }

        public function safeDown ()
        {
            $this->dropColumn('log', 'category');
        }
    }