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)
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)
I believe that it stores it in a text column, which is toted as being, "variable unlimited length".