我正在用 ruby on rails 为中国学生创建一个平台。这是我的架构
ActiveRecord::Schema.define(version: 20130827203308) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
create_table "posts", force: true do |t|
t.text "message"
t.integer "student_id"
end
add_index "posts", ["student_id"], name: "index_posts_on_student_id", using: :btree
create_table "students", force: true do |t|
t.string "first_name"
t.string "last_name"
t.string "email"
t.string "number"
t.string "college"
t.string "password"
t.float "budget"
t.string "picture"
t.datetime "created_at"
t.datetime "updated_at"
end
当我前往 Rails 控制台并执行此操作时
Post.create(:message => "I am looking at a 3 bedroom apartment")
我可以开始并将其提交到我的数据库中。
但是当我这样做时
Post.create(:message => "我在Suffolk University附近想租一个3房一厅的apt有没有同学有兴趣“)
我的 Rails 控制台冻结。
我在帖子表中为我的消息使用“文本”类型。我应该使用“字符串”吗?还是我应该使用某种语言宝石来做到这一点?