6

I have a data structure:

  t.integer :userID
  t.string :apikey
  t.integer :characterID

The userID should be the primary key (name is not important, it can default to :id). However, I don't want it to be auto incrementing or anything else, just take the value provided and write it into the database.

How do I have to adjust the migration and the model to achieve what I want?

Femaref
  • 60,705
  • 7
  • 138
  • 176

2 Answers2

22
 create_table(:my_table, :primary_key => 'userID') do |t|
   # Primary key column will be created automatically
   # Do not create here
   # t.column :userID, :integer, :null => false
   ...
 end

Or

create_table :my_table, {:id => false} do |t|
  t.integer :userID
  t.string :apikey
  t.integer :characterID
  t.timestamps
 end
 execute "ALTER TABLE my_table ADD PRIMARY KEY (userID);"

And don't forget to put this line somewhere in model:

 set_primary_key :userID
Wen
  • 1,230
  • 1
  • 14
  • 28
Mohit Jain
  • 43,139
  • 57
  • 169
  • 274
0

Instead of circumventing the ActiveRecord model, I made userID a normal column and used

validates_uniqueness_of :userID, :message => "userID needs to be unique"

on the model to validate it.

Femaref
  • 60,705
  • 7
  • 138
  • 176