Is there documentation for the Rails column types?
Guidelines built from personal experience: String: Limited to 255 characters (depending on DBMS) Use for short text fields (names, emails, etc) Text: Unlimited length (depending on DBMS) Use for comments, blog posts, etc. General rule of thumb: if it’s captured via textarea, use Text. For input using textfields, use string. Integer: Whole numbers Float: Decimal … Read more