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

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

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

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

谢谢.

DB / 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

解决方法:

可能是你应该更换

t.string   :body

t.text   :body

本文标题为:mysql中的数据类型文本(Ruby on Rails)

基础教程推荐