diff options
author | arf20 <aruizfernandez05@gmail.com> | 2024-03-21 16:22:33 +0100 |
---|---|---|
committer | arf20 <aruizfernandez05@gmail.com> | 2024-03-21 16:22:33 +0100 |
commit | a7ef3f5a54cf45eaa5db4b200604a650929194dc (patch) | |
tree | 6d3a31c419d5e7fc3d6ca3c3e7c0cc75d512a982 /dbinit.sql | |
parent | a3ca3623a66763dd5515e7e0a9245a4405d605a9 (diff) | |
download | arfnet2-cstims-a7ef3f5a54cf45eaa5db4b200604a650929194dc.tar.gz arfnet2-cstims-a7ef3f5a54cf45eaa5db4b200604a650929194dc.zip |
Add close comment to tickets
Diffstat (limited to 'dbinit.sql')
-rw-r--r-- | dbinit.sql | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -29,6 +29,7 @@ CREATE TABLE `arfnet2`.`orders` ( `billing` VARCHAR(255) NOT NULL , `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , `status` ENUM('setting up','active','inactive') NOT NULL DEFAULT 'setting up' , + `duedate` TIMESTAMP NOT NULL DEFAULT 0 , `comments` TEXT NOT NULL , PRIMARY KEY (`id`) ); @@ -40,6 +41,7 @@ CREATE TABLE `arfnet2`.`tickets` ( `body` TEXT NOT NULL , `date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP , `status` ENUM('open','closed') NOT NULL DEFAULT 'open' , + `closecomment` TEXT NOT NULL DEFAULT '', `asignee` INT NOT NULL , PRIMARY KEY (`id`) ); |