Merge changes I3dff9104,Icffbbcce
* changes: PatchSet: Correct misspelling and type of pushCertificate field SchemaVersion: Fix renameColumn method
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user