mysql中的数据类型文本(Ruby on Rails)

时间:2011-04-11 06:11:09

标签: mysql ruby-on-rails ruby types

在开发中我使用了sqlite3,而我正在编写一个博客应用程序。所以对于博客文章,我有数据类型文本,工作正常。我能够写很长篇文章,从来没有遇到过问题。使用MySQL切换到生产,现在我的文章在大约250个字符后被截断。

有没有人知道我需要做什么和/或改变以使MySQL像sqlite3一样,允许真正大量的文本?

谢谢。

分贝/ schema.rb:

ActiveRecord::Schema.define(:version => 20110307222323) do

  create_table "articles", :force => true do |t|
    t.integer  "user_id"
    t.string   "title"
    t.string   "body"
    t.datetime "created_at"
    t.datetime "updated_at"
    t.integer  "category_id"
    t.string   "url"
  end
end

1 个答案:

答案 0 :(得分:7)

可能你应该替换

t.string   :body

t.text   :body