Results 265 comments of Lauris BH

I had not yet time to test it, will do it soon

Forking not counting in limit is intended behaviour so that users could still submit PRs even if they can not create own repositories

I was thinking already about creating such site... I even registered domain hubco.io for this :D

> * `AlterColumnType(...)` > > * `AlterColumnConstraint(...)` This could probably work but still question is how to pass on to what constraint exactly needs to be changed? Create bitwise enum?

One option to create something like: ```go type AlterColumnOption int const ( AlterColumnType AlterColumnOption = 1

yes so that it will know what SQL to generate as currently adapter will receive not constraint options but already filled constraint struct `rel.Column` that has constraints as fields but...

codeclimate test fail is not related to this code changes

For MySQL to change not null it would still require to use AlterColumType would it need to panic if not used otherwise or just do not generate SQL as for...

Suggestions implemented

for example: For example for Postgres you can use (but can not be supported for mysql as column full definition needs to be known): ```go s.AlterColumn("table", "col", rel.Require(false)) ``` that...