views:

177

answers:

2

If I have this in a migration:

t.text :body

How much text can I fit in :body? (I'm using PostgreSQL if that's relevant)

+2  A: 

I believe that it stores it in a text column, which is toted as being, "variable unlimited length".

Mike Trpcic
+3  A: 

straight from PostgreSQL Documentation

text    variable unlimited length
ez