solventt
solventt
@zelding Of course I did. I wrote above that now I have almost a copy of existing `PlainTextErrorRenderer`. I only suggested it.
@pdehne I think what you suggested makes no sense. You can already control the exception details logging through the `$logErrorDetails` option (when using `addErrorMiddleware()`). The `writeToErrorLog()` method of Slim's `ErrorHandler`...
@FabianTe What you want is solved by writing an invocation route strategy, see the Slim [docs](https://www.slimframework.com/docs/v4/objects/routing.html#route-strategies). If you dont want to learn the Slim internals - you can use my...
Me too looked for method for adding check constraint while creating a table. Done as follows: ``` if ($this->isMigratingUp()) { $this->execute('ALTER TABLE emails ADD CONSTRAINT chk_email_primary CHECK (main IN (1,0))');...