Is there a way in which I can create a serial number (SNO) column through scaffolding in Rails which increases on adding a record, decreases on deleting a record and cannot be modified manually?
|
|
|||||
|
|
|
If you want to create a summary column on a model you will need to put this logic into your models. There is not a built in method for this (like a standard autoincrement field), but it can be added easily:
|
||
|
|
|
|
It's not clear whether there is any relationship involved, but it sounds like counter_cache may be a good fit. A Railscast episode provides the code examples and a video tutorial. |
||
|
|
