You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
By default, the
:string
type 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 thetext
Postgres type or add changeset length validation. See #130 for an example.The text was updated successfully, but these errors were encountered: