I have a database column named 'status' in my 'orders' table. When an
order placed, I'd like to initialize this column value to be 'in
progress'. Is it best to do this in:
A) the database migration
B) the database itself
C) in before_create
My personal preference is to do it in the before_create. This way it
is very evident to me when I look at the model as to what the value is
going to be initialized to. Are there performance issues with doing
this?
Jody Baty
Lead Developer
my Curriculum Analysis Tools (www.mycatshq.com)
i am using Oracle for back-end storage, so all my default values for
columns are in sql scripts, which is separate folder,
and i don't think introduction of default value in any of the 3 places
you mentioned will lead to performance problem.
(Worst case: if it affects also it should be very very negligible, but
i don't have benchmark results, personally i feel, it will not)