Move SQL columns from character varying to text
Ecto has default character varying(255) and it doesn't seem we can have character varying without limitation. However in PG text is basically the same so let's have text instead.
Needs to migrate every :string column to :text type.