mirror of
https://github.com/google/nomulus.git
synced 2025-07-25 20:18:34 +02:00
Add a SQL schema to AllocationToken (#763)
* Add a SQL schema to AllocationToken * Respond to CR - rename field in tests - rename allowed_registrar_ids field - remove unnecessary db load in GATC * Add TODO for HistoryEntry vkeys * Run autoformat * V48 -> V49
This commit is contained in:
parent
a28632dbe1
commit
5c30ef7086
23 changed files with 352 additions and 45 deletions
|
@ -233,12 +233,12 @@ class google.registry.model.domain.secdns.DelegationSignerData {
|
|||
class google.registry.model.domain.token.AllocationToken {
|
||||
@Id java.lang.String token;
|
||||
boolean discountPremiums;
|
||||
com.googlecode.objectify.Key<google.registry.model.reporting.HistoryEntry> redemptionHistoryEntry;
|
||||
double discountFraction;
|
||||
google.registry.model.CreateAutoTimestamp creationTime;
|
||||
google.registry.model.UpdateAutoTimestamp updateTimestamp;
|
||||
google.registry.model.common.TimedTransitionProperty<google.registry.model.domain.token.AllocationToken$TokenStatus, google.registry.model.domain.token.AllocationToken$TokenStatusTransition> tokenStatusTransitions;
|
||||
google.registry.model.domain.token.AllocationToken$TokenType tokenType;
|
||||
google.registry.persistence.VKey<google.registry.model.reporting.HistoryEntry> redemptionHistoryEntry;
|
||||
int discountYears;
|
||||
java.lang.String domainName;
|
||||
java.util.Set<java.lang.String> allowedClientIds;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue