diff options
author | Malf Furious <m@lfurio.us> | 2018-10-20 21:49:32 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2018-10-20 21:49:32 -0400 |
commit | b690505b0e1e255e5081adcf49c724186bb831c2 (patch) | |
tree | 71195ab44722aa2c6cc03824c2757ad3e209e0e3 /srvs | |
parent | b093b3affe3ac6878e2242bff310dc466687a825 (diff) | |
download | scrott-b690505b0e1e255e5081adcf49c724186bb831c2.tar.gz scrott-b690505b0e1e255e5081adcf49c724186bb831c2.zip |
issue: Add assigned timestamp
Diffstat (limited to 'srvs')
-rw-r--r-- | srvs/mysql.sql | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/srvs/mysql.sql b/srvs/mysql.sql index 9f3193b..9bad437 100644 --- a/srvs/mysql.sql +++ b/srvs/mysql.sql @@ -185,6 +185,7 @@ CREATE TABLE issues ( seen int(1) NOT NULL DEFAULT 0, /* has the assignee seen this yet? */ description text NOT NULL, opened varchar(64) NOT NULL DEFAULT '', + assigned varchar(64) NOT NULL DEFAULT '', authored varchar(64) NOT NULL DEFAULT '', closed varchar(64) NOT NULL DEFAULT '', due varchar(64) NOT NULL DEFAULT '', |