出于某些原因,当我在Heroku中运行我的迁移时,续集会尝试创建一行string
而不是varchar
:
PGError: ERROR: type "string" does not exist (Sequel::DatabaseError)
LINE 1: ...erial PRIMARY KEY, "facebook_id" integer, "email" string(50)
任何人都有修复?
答案 0 :(得分:1)
好的,改变了我的迁移:
string :email, :null => false, :unique => true
到
String :email, :null => false, :unique => true