diff options
Diffstat (limited to 'upgrading')
-rw-r--r-- | upgrading/4.9.0.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/upgrading/4.9.0.txt b/upgrading/4.9.0.txt new file mode 100644 index 00000000..4c79283e --- /dev/null +++ b/upgrading/4.9.0.txt @@ -0,0 +1,6 @@ +1. Add new columns to store the timestamp and UID when closing requests: + +---- +ALTER TABLE PackageRequests ADD COLUMN ClosedTS BIGINT UNSIGNED NULL DEFAULT NULL; +ALTER TABLE PackageRequests ADD COLUMN ClosedUID INTEGER UNSIGNED NULL DEFAULT NULL; +---- |