Justin Barker
Justin Barker
I reviewed the DB driver migrations and merged into one for a work around. [m180224_033528_queue.php.zip](https://github.com/yiisoft/yii2-queue/files/1754074/m180224_033528_queue.php.zip)
It is from ../src/drivers/db/migrations/M...Priority.php: ``` public function up() { $this->addColumn($this->tableName, 'priority', $this->integer()->unsigned()->notNull()->defaultValue(1024)->after('delay')); $this->createIndex('priority', $this->tableName, 'priority'); } ```
I am not well versed in MSSQL inner component handling, but from what I am able to discern is that tables will create a constraint object that defines anything from...
SQL Server Developer Edition can be downloaded for free [here](https://www.microsoft.com/en-us/sql-server/sql-server-downloads).