*/ class M170601155600Priority extends Migration { public $tableName = '{{%queue}}'; public function up() { $this->addColumn($this->tableName, 'priority', $this->integer()->unsigned()->notNull()->defaultValue(1024)->after('delay')); $this->createIndex('priority', $this->tableName, 'priority'); } public function down() { $this->dropIndex('priority', $this->tableName); $this->dropColumn($this->tableName, 'priority'); } }