Designing a action history database for different types of actions - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:41:11Zhttp://stackoverflow.com/feeds/question/839425http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/839425/designing-a-action-history-database-for-different-types-of-actions0Designing a action history database for different types of actionsIkke2009-05-08T11:35:45Z2009-05-08T11:42:35Z
<p>In a bugtrackingsystem, I want to keep track of some actions. Actions like change status, add comment, change priority, and other actions.</p>
<p>The problem is, how do I store those different actions, with different parameters. For example when someone changes status, it needs to save statuschange, with old status and new status. But when someone adds a comment, it needs to save comment added, with comment id.</p>
<p>One solution could be to save those parameters as plain text. Like "oldstatus => new status", "comment 001 added". But that doesn't seem really viable. </p>
<p>Does someone know how this could work best?</p>
http://stackoverflow.com/questions/839425/designing-a-action-history-database-for-different-types-of-actions/839444#8394441Answer by Andomar for Designing a action history database for different types of actionsAndomar2009-05-08T11:42:33Z2009-05-08T11:42:33Z<p>You can store the actual status in the bug table, and keep a history of status changes in a different table:</p>
<pre><code>changeid (pk) - ticketid (fk) - date - oldstatus - newstatus - username
</code></pre>
<p>Comments usually go in a different table too:</p>
<pre><code>commentid (pk) - ticketid (fk) - date - username - comment
</code></pre>
<p>When retrieving data, you can retrieve all comments for a bug like:</p>
<pre><code>select
from comments
where comments.bugid = 12
</code></pre>
<p>P.S. (pk) = primary key, (fk) is foreign key</p>
http://stackoverflow.com/questions/839425/designing-a-action-history-database-for-different-types-of-actions/839445#8394451Answer by Anton Gogolev for Designing a action history database for different types of actionsAnton Gogolev2009-05-08T11:42:35Z2009-05-08T11:42:35Z<p>I'd prefer keeping a separate entry in <code>TaskInfoRevision</code> table for each change, with all the fields like status, comment, properties, etc., and then determine what has changed in your application code, not in the DB itself.</p>