Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I just deployed a simple Ruby on Rails (3.0.10) application to Heroku. There is a line of code create a new User object like this.

User.create(:name => "[name here]", :email => "[email here]")

It can run well in my local machine, which is using MySQL. After I deployed it to Heroku, I got an error.

ActiveRecord::StatementInvalid: PGError: ERROR:  null value in column "id" violates not-null constraint : INSERT INTO "users" ("id", "name", "email", "created_at", "updated_at") VALUES (NULL, '[name here]', '[email here]', '2011-09-28 03:59:12.908593', '2011-09-28 03:59:12.908593') RETURNING "id"

I have no idea what's wrong with my code. Did i miss anything?

Thanks all.

UPDATE

Migration

class CreateUsers < ActiveRecord::Migration
  def self.up
    create_table :users do |t|
      t.string :email
      t.string :name

      t.timestamps
    end
  end

  def self.down
    drop_table :users
  end
end

Schema

ActiveRecord::Schema.define(:version => 20110922071106) do

  create_table "users", :force => true do |t|
    t.string   "email"
    t.string   "name"
    t.datetime "created_at"
    t.datetime "updated_at"
  end

end
share|improve this question
How did you create your users table? Can you include the schema.rb chunk for it? – mu is too short Sep 28 '11 at 5:12
update. thanks. :) – victorlamhk Sep 28 '11 at 5:29
1  
Hmm. The SQL shouldn't even mention id, it should just be INSERT INTO "users" ("name", "email", .... Is there something in your production configuration that still thinks it is using MySQL? – mu is too short Sep 28 '11 at 6:17
yup. i know, but i afraid there isn't any production configuration. it's so weird.... i am having a deeper check.... will update here asap...... – victorlamhk Sep 28 '11 at 6:44

3 Answers

Did you do this: (Taken from http://railsapps.github.com/rails-heroku-tutorial.html)

Replace SQLite with PostgreSQL If you are developing locally using SQLite, you will need to switch to PostgreSQL for deployment to Heroku. If you don’t want to develop using PostgreSQL locally, you can set up your Gemfile to use SQLite for development and PostgreSQL for production.

To switch from SQLite to PostgreSQL for deployment to Heroku, edit your Gemfile and change this line:

gem 'sqlite3'

To this:

group :production do
  gem 'pg' 
end 
group :development, :test do
  gem 'sqlite3'
end
share|improve this answer
Thanks buddy. My Gemfile is same as yours suggestion. The problem is still exists. – victorlamhk Sep 28 '11 at 7:03

For anyone else looking, I had this same problem. Worked fine in dev, but failed in production with Postgres. The problem I had I tracked back to the CanCan plugin, specifically code I had that was creating a guest user the ability.rb file, if no user object existed. The guest account was suggested in a Railscast. I removed the User.new guest creation command and the problem resolved.

share|improve this answer
up vote 1 down vote accepted

I just re-create the whole RoR application, and copy all the controllers, models, and views that I built to the new app. It is now running well.

I tried to compare 2 versions and didn't have any result. Will let you guys know if I find out the cause of this.

Thanks all. :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.