Weird select on Rails

At a wild guess you're using attr_accessor on some of your model's attributes. Don't, rails generates accessors for database attributes automatically (perhaps you were thinking of attr_accessible)

Fred