diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-12-12 18:25:10 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-12-13 10:22:58 +0100 |
commit | 5931d5ceec133ad1eee33faee96be061e011dacd (patch) | |
tree | 9195e3443c36d342b673d9470ee7bd79d4274ec2 /upgrading/4.2.0.txt | |
parent | b8c1cd7cc3270563ef0c4abed930a9f63e1eefce (diff) | |
download | aur-5931d5ceec133ad1eee33faee96be061e011dacd.tar.gz aur-5931d5ceec133ad1eee33faee96be061e011dacd.tar.xz |
Save comment when closing requests
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'upgrading/4.2.0.txt')
-rw-r--r-- | upgrading/4.2.0.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/upgrading/4.2.0.txt b/upgrading/4.2.0.txt index 1450d5e1..7482204d 100644 --- a/upgrading/4.2.0.txt +++ b/upgrading/4.2.0.txt @@ -21,3 +21,10 @@ ALTER TABLE Users MODIFY Email VARCHAR(254) NOT NULL; ---- ALTER TABLE PackageComments ADD COLUMN PinnedTS BIGINT UNSIGNED NOT NULL DEFAULT 0; ---- + + +3. Add new column to store the closure comment of package requests: + +---- +ALTER TABLE PackageRequests ADD COLUMN ClosureComment TEXT NOT NULL DEFAULT ''; +---- |