对象不在heroku上保存,但在本地

时间:2012-08-23 03:13:11

标签: ruby-on-rails heroku

用户has_many职位。这是Auth控制器的一部分,该控制器调用LinkedIn以供用户进行身份验证:

positions.each do |position|

    @li_pos_id = position.id
    @title = position.title
    @company = position.company.name
    @industry = position.company.industry
    @start_month = position.start_date.month
    @start_year = position.start_date.year
    @end_month = position.end_date.month
    @end_year = position.end_date.year

    current_user.positions.build(li_pos_id: @li_pos_id, title: @title, company: @company, industry: @industry, 
      start_month: @start_month, start_year: @start_year, end_month: @end_month, end_year: @end_year)
end

我正在试着弄清楚为什么current_user.positions.build(...)在我的开发(Postgres)数据库中创建一个位置而不是在Heroku(也是Postgres)上创建一个位置。我的用户对象在身份验证时创建就好了。从我的会话控制器:

def create
      user = User.from_omniauth(env['omniauth.auth'])
      session[:user_id] = user.id
      redirect_to auth_path
    end

从我的用户模型调用以下内容:

def self.from_omniauth(auth)
      where(auth.slice('provider', 'uid')).first || create_from_omniauth(auth)
    end

    def self.create_from_omniauth(auth)
      create! do |user|
        user.provider = auth['provider']
        user.uid = auth['uid']
      end
    end

我的用户模型包含必要的'has_many:positions',而我的位置模型包含'belongs_to:user'。无论如何,current_user.positions.build(...)行在开发中创建了适当的位置,但根本不在生产中。

非常感谢这里的任何帮助!谢谢。

0 个答案:

没有答案