nswalters / AppTrakz-Client

React Client for AppTrakz application for documenting the job application process.
0 stars 0 forks source link

FIX: Bug with using 'updated_at' column for application timeline #85

Closed nswalters closed 3 years ago

nswalters commented 3 years ago

Currently, the updated_at column for ApplicationStatus records uses auto_now=True.

This value updates every time we update the record, and does not reflect the first time that record was created. We should add a 'created_at' field to use in our timeline so that we get an accurate record of when that status was first changed/created.