Aurélien Chretien

Results 2 comments of Aurélien Chretien

In MSSQL when we use `->defaultValue('xxx')` it add a autogenerated CONSTRAINT named DB__xxxx. To drop those columns in migrations, we should drop the constraint before the column. Because the name...

@zhuravljov I just tried this ```php 'job' => new Expression("CONVERT(VARBINARY(MAX), :data)", [':data' => $message]), ``` And it works well. But you have to update the `reserve`method also to convert by...