views:

84

answers:

1

Hey guys, just doing a quick scaffold on rails, and I'm going to have a field that's only 140 characters or less, is that a string or text?

+5  A: 

That would be a string.

A good rule of thumb would be to use string for anything up to 255 characters. Beyond that, use a text

webdestroya
Thanks webdestorya!
Rickmasta
@Rickmasta - Happy to help!
webdestroya