summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Pursehouse <david.pursehouse@sonymobile.com>2016-03-04 04:22:39 +0000
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2016-03-08 04:53:05 +0000
commit7b836f5f2c8dbd1daafaacd6fa5234a99cd6ee7d (patch)
treed43879982613afbca716b8fe8a5f1920d675a4d3
parent7bf178c4fec58df2813ab1a869b7e893c167904b (diff)
Correct schema migration instructions for MySQL in 2.12.1 release notes
For MySQL the column type should be 'text', not 'clob'. Change-Id: I22a99c8c92b3218eecb4a203d4106176fcf2a5c8
-rw-r--r--ReleaseNotes/ReleaseNotes-2.12.1.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/ReleaseNotes/ReleaseNotes-2.12.1.txt b/ReleaseNotes/ReleaseNotes-2.12.1.txt
index cd1a304198..f49de7d4b1 100644
--- a/ReleaseNotes/ReleaseNotes-2.12.1.txt
+++ b/ReleaseNotes/ReleaseNotes-2.12.1.txt
@@ -21,12 +21,18 @@ When upgrading a site that is already running version 2.12, the `patch_sets`
table must be manually migrated using the `gerrit gsql` SSH command or the
`gqsl` site program.
-For the default H2 database or MySQL, execute the command:
+For the default H2 database, execute the command:
----
alter table patch_sets modify push_certficate clob;
----
+For MySQL, execute the command:
+
+----
+ alter table patch_sets modify push_certficate text;
+----
+
For PostgreSQL, execute the command:
----