Is there any way of overriding a model's id value on create? Something like:
Post.create(:id => 10, :title => 'Test')
would be ideal, but obviously won't work.
|
3
|
Is there any way of overriding a model's id value on create? Something like:
would be ideal, but obviously won't work.
|
||
|
|
|
|
I don't know if that would be posible, but I can think of two motivations, one is that you want to create the new model to be asociated with an existing one, in that case, you can use the other model collection methods, something like:
The other is that you need to use that field for some special function, I would strongly recommend against that, use a model method instead, like a virtual attribute, you only need to create the corresponding getter and setter. Think about what would happen if you need to migrate or recreate your db for some reason, depending on controlling the primary key is not a great idea. Could you specify your objective? |
|||
|
|
I think you can try setting
|
||
|
|
|
|
Try
that should give you what you're looking for. |
||
|
|
|
Actually, it turns out that doing the following works:
|
||
|
|
|
|
id is just attr_protected, which is why you can't use mass-assignment to set it. However, when setting it manually, it just works:
I'm not sure what the original motivation was, but I do this when converting ActiveHash models to ActiveRecord. ActiveHash allows you to use the same belongs_to semantics in ActiveRecord, but instead of having a migration and creating a table, and incurring the overhead of the database on every call, you just store your data in yml files. The foreign keys in the database reference the in-memory ids in the yml. ActiveHash is great for picklists and small tables that change infrequently and only change by developers. So when going from ActiveHash to ActiveRecord, it's easiest to just keep all of the foreign key references the same. |
||
|
|