一个遗留系统中id为字符串,RAILS好像不能使用非整数主键,我的做法:
model中:
这样就可以实现字符串主键同样的效果,各位评评
create_table :mytable, :id => false do |t|
t.string :id, :limit => 16, :null => false
...
end
add_index :mytable, :id, :name => "mytable_id_index", :unique => true
model中:
class MyTable < ActiveRecord::Base
set_primary_key "id"
...
end
这样就可以实现字符串主键同样的效果,各位评评