我收到了一个奇怪的Rails迁移错误。我正在使用" pg" gem与我的Postgres数据库进行交互。当我尝试运行添加"数字的迁移时,#34;列,我收到以下错误:
www-data@site:~/site/current$ RAILS_ENV=production bundle exec rake db:migrate
== 20150115193802 AddDailyClicksToSites: migrating ============================
-- add_column(:sites, :daily_clicks, :number)
rake aborted!
StandardError: An error has occurred, this and all later migrations canceled:
PG::UndefinedObject: ERROR: type "number" does not exist
LINE 1: ALTER TABLE "sites" ADD "daily_clicks" number
^
我不确定为什么会发生这种情况,因为以前使用" number"田地工作得很好。