Add description to IncidentStatus

Adds a new column to the IncidentStatus to permit the user to explain
why the status change was made. Also exported this and Incident data
into the demo sql file.
This commit is contained in:
2011-12-20 01:06:00 +00:00
parent 4766786ee2
commit 6e5bb3dfd8
4 changed files with 23 additions and 0 deletions

View File

@@ -117,6 +117,7 @@ CREATE TABLE IF NOT EXISTS `incidentstatus` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`incident` int(10) unsigned NOT NULL,
`status` int(10) unsigned NOT NULL,
`description` text NOT NULL,
`ctime` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;