summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2016-02-26 13:46:29 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2016-02-26 13:46:29 +0000
commit8b5dc393ab069eecc953da5549ad1c03e4854bcb (patch)
tree33511f91d3b2f44dea7e2d28132d9fbff06411ce
parenta7de1f841c21194e94ae8c6489b667a313f291e6 (diff)
parent93821638ba1dd3e3b3960f051bff8da56423d11c (diff)
Merge "Add migration command for PostgreSQL in 2.12.1 release notes" into stable-2.12
-rw-r--r--ReleaseNotes/ReleaseNotes-2.12.1.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/ReleaseNotes/ReleaseNotes-2.12.1.txt b/ReleaseNotes/ReleaseNotes-2.12.1.txt
index 6f900b7b10..379572edec 100644
--- a/ReleaseNotes/ReleaseNotes-2.12.1.txt
+++ b/ReleaseNotes/ReleaseNotes-2.12.1.txt
@@ -18,7 +18,11 @@ If you have already upgraded to 2.12, you need to issue this SQL statement
manually (e.g. using the `gerrit gsql` SSH command or the `gqsl` site
program):
+
- alter table patch_sets modify push_certficate clob
+ alter table patch_sets modify push_certficate clob;
++
+Or with this command if the site is configured to use PostgreSQL:
++
+ alter table patch_sets alter column push_certficate type text;
+
Note that the misspelled `push_certficate` is the actual name of the
column.