Added by CS Wong over 10 years ago
Hi,
I’m trying to modify OpenProject to fit into a project deployment scenario where we have multiple tasks and milestones, each of the taking just minutes or hours instead of days. Due to that, the current column type date used for Work Packages doesn’t really fit my requirements.
Thus far, what I already know I have to do are (after a couple of hours reading and experimenting):
start_date
and due_date
Would just like to check if anyone had done this before and has any advice on this? I’m not a Ruby programmer by any means, but I suppose I have enough common sense to fumble my way around the source code. Right now, I’m having trouble locating where the start_date
and due_date
attribute is defined in the WorkPackage
model. I’ve searched app/models/work_package.rb
and I know that this is the correct class, there isn’t really an explicit definition for start_date
/ due_date
in there. It doesn’t seem to be inherited from ActiveRecord
either so I’m kinda confused where to find it.
Thanks for any help!
Wong