Swap id and indexed field in LrpToken

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=130014294
This commit is contained in:
ctingue 2016-08-11 11:52:03 -07:00 committed by Ben McIlwain
parent 159528fb6f
commit 2e88129c43
3 changed files with 30 additions and 26 deletions

View file

@ -285,10 +285,10 @@ class google.registry.model.domain.GracePeriod {
org.joda.time.DateTime expirationTime;
}
class google.registry.model.domain.LrpToken {
@Id java.lang.String assignee;
@Id java.lang.String token;
com.googlecode.objectify.Key<google.registry.model.reporting.HistoryEntry> redemptionHistoryEntry;
google.registry.model.UpdateAutoTimestamp updateTimestamp;
java.lang.String token;
java.lang.String assignee;
java.util.Set<java.lang.String> validTlds;
}
class google.registry.model.domain.Period {