m160209_151553_employment_data.php 695 Bytes
<?php

    use yii\db\Migration;

    class m160209_151553_employment_data extends Migration
    {

        public function up()
        {
            $this->batchInsert('{{%employment}}', [ 'name' ], [
                [ 'Проектная' ],
                [ 'Полная' ],
                [ 'Не полная' ],
                [ 'Удаленная' ],
            ]);
        }

        public function down()
        {
            $this->delete('employment');
        }

        /*
        // Use safeUp/safeDown to run migration code within a transaction
        public function safeUp()
        {
        }

        public function safeDown()
        {
        }
        */
    }