By default, the :string type in Ecto will create fields in Postgres that are varchar(255). In places like this and this, for example, user input could be longer than 255 characters. We should either migrate to the text Postgres type or add changeset length validation. See #130 for an example.
By default, the
:stringtype in Ecto will create fields in Postgres that arevarchar(255). In places like this and this, for example, user input could be longer than 255 characters. We should either migrate to thetextPostgres type or add changeset length validation. See #130 for an example.