Yes, the text type is designed to store character strings.
The usual approach is to use a Javascript rich text editor which generates HTML. You save the raw HTML straight to the database, and then sanitize it when you display it. This is to prevent people from entering Javascript and other nasties into the text area that would get executed when other visitors view their input.
Rails 3 sanitizes your output by default, so all HTML will be escaped. You will need to call either <%= @model.rich_text.html_safe %> to skip this sanitizing, or (much better!) call <%= sanitize(@model.rich_text, :tags => %w(b i p)) %>, passing in an explicit list of allowed tags.
I have no experience with Heroku but I can't imagine it will be any different.