Merge changes I3dff9104,Icffbbcce

* changes:
  PatchSet: Correct misspelling and type of pushCertificate field
  SchemaVersion: Fix renameColumn method
This commit is contained in:
Dave Borowitz
2016-01-20 14:09:22 +00:00
committed by Gerrit Code Review
3 changed files with 49 additions and 6 deletions

View File

@@ -187,9 +187,11 @@ public final class PatchSet {
@Column(id = 6, notNull = false)
protected String groups;
//DELETED id = 7 (pushCertficate)
/** Certificate sent with a push that created this patch set. */
@Column(id = 7, notNull = false)
protected String pushCertficate;
@Column(id = 8, notNull = false, length = Integer.MAX_VALUE)
protected String pushCertificate;
protected PatchSet() {
}
@@ -251,11 +253,11 @@ public final class PatchSet {
}
public String getPushCertificate() {
return pushCertficate;
return pushCertificate;
}
public void setPushCertificate(String cert) {
pushCertficate = cert;
pushCertificate = cert;
}
@Override