Jonatan Klemets
Jonatan Klemets
Hey I have never used the `DB::executeProcedure` helper method. But I did some testing and the example below should work. You need to define a variable and pass it by...
The `DB:executeProcedure` method returns a boolean. True on success, otherwise false. The result returned by the procedure is stored in the `$result` variable. Like this ```php $result = null; $bindings...
It's defined as varchar(45) in MySsqlGrammar. https://github.com/laravel/framework/blob/15bd214be27426ed251e916700c23ca396bb335c/src/Illuminate/Database/Schema/Grammars/MySqlGrammar.php#L695. So you can define your ip field as a normal string, because laravel does that under the hood anyway.
It is hard to say if the changes here are causing the CI failures or if the changes in #40 also play a role. But we hit an assert here...
Hi, thanks for taking a look at this. I haven't had time to dig into this, but the proposed fix makes the test pass with release builds. However, it causes...