InvisibleSmiley

Results 34 comments of InvisibleSmiley

Thanks for the pointer toward #767 - since it supports regexps this might suffice as a workaround in case I need one. Not sure about the defaults though since AFAIK...

"Title Level" still seems to do nothing. Changing it even disables all buttons except for Reset and Cancel.

![TOC](https://user-images.githubusercontent.com/21109801/79535811-d4a46680-807e-11ea-86d5-979a8ccd7b7c.png) The problem seems to be that as long as the Title reads exactly "Table of Contents", changing Title Level has no effect.

It is better now in the sense that Title Level is no longer ignored if Title reads "Table of Contents" or anything else that does not start with a hash....

I ran into this with one migration that creates a table including a unique index, then another migration altering the table, and finally some UPSERT that complains: ``` PDOException: SQLSTATE[HY000]:...

Sure. Simple example: First ``` $this->table('foo') ->addColumn('indexcol', 'integer') ->addIndex( 'indexcol', ['unique' => true] ) ->create(); ``` Second ``` $this->table('foo') ->changeColumn('indexcol', 'integer', ['null' => false]) ->update(); ``` Index is present after...

> I'm actually wondering whether this extension is still needed at all. Prophecy also has generic signatures for `prophesize()` methods Two answers to this question. 1. When using the ProphecyTrait...