Delete unused description field from premium/reserved list entities

It isn't used now, and as far as I can tell it was never used for anything, so
get rid of it.  We won't be using it in our new Cloud SQL schema anyway.

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=242501877
This commit is contained in:
mcilwain 2019-04-08 11:25:59 -07:00 committed by jianglai
parent 5e310f8fcd
commit d5b540dfe7
4 changed files with 3 additions and 13 deletions

View file

@ -525,7 +525,6 @@ class google.registry.model.registry.label.PremiumList {
@Id java.lang.String name;
@Parent com.googlecode.objectify.Key<google.registry.model.common.EntityGroupRoot> parent;
com.googlecode.objectify.Key<google.registry.model.registry.label.PremiumList$PremiumListRevision> revisionKey;
java.lang.String description;
org.joda.time.DateTime creationTime;
org.joda.time.DateTime lastUpdateTime;
}
@ -552,7 +551,6 @@ class google.registry.model.registry.label.ReservedList {
@Id java.lang.String name;
@Parent com.googlecode.objectify.Key<google.registry.model.common.EntityGroupRoot> parent;
boolean shouldPublish;
java.lang.String description;
java.util.Map<java.lang.String, google.registry.model.registry.label.ReservedList$ReservedListEntry> reservedListMap;
org.joda.time.DateTime creationTime;
org.joda.time.DateTime lastUpdateTime;