Primary Key Field name - Problem

Dear All,

       Can i declare a primary key field name as us_id? instead of Id. Regards Devi.R

You can call set_primary_key:

class MyModel < ActiveRecord::Base set_primary_key “us_id” end

See: http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M002340&name=set_primary_key

Regards, Craig

If you do decide to override the primary key, it will be your responsibility to set it to a unique before

you perform a save operation on a new row.

-Conrad

You can call set_primary_key:

class MyModel < ActiveRecord::Base set_primary_key “us_id” end

See: http://www.railsbrain.com/api/rails-2.3.2/doc/index.html?a=M002340&name=set_primary_key

Regards, Craig

– Craig Demyanovich Mutually Human Software http://mutuallyhuman.com

If you do decide to override the primary key, it will be your responsibility to set it to a unique value before

you perform a save operation on a new row.

-Conrad