mirror of
https://github.com/pikami/cosmium.git
synced 2025-12-18 16:30:44 +00:00
Implement UPPER/LOWER; minor Fixes
This commit is contained in:
@@ -1,7 +1,10 @@
|
||||
package repositorymodels
|
||||
|
||||
type Database struct {
|
||||
ID string `json:"id"`
|
||||
ID string `json:"id"`
|
||||
TimeStamp int64 `json:"_ts"`
|
||||
UniqueID string `json:"_rid"`
|
||||
ETag string `json:"_etag"`
|
||||
}
|
||||
|
||||
type RepositoryStatus int
|
||||
@@ -17,10 +20,10 @@ type Collection struct {
|
||||
ID string `json:"id"`
|
||||
IndexingPolicy CollectionIndexingPolicy `json:"indexingPolicy"`
|
||||
PartitionKey CollectionPartitionKey `json:"partitionKey"`
|
||||
Rid string `json:"_rid"`
|
||||
Ts int `json:"_ts"`
|
||||
UniqueID string `json:"_rid"`
|
||||
TimeStamp int64 `json:"_ts"`
|
||||
Self string `json:"_self"`
|
||||
Etag string `json:"_etag"`
|
||||
ETag string `json:"_etag"`
|
||||
Docs string `json:"_docs"`
|
||||
Sprocs string `json:"_sprocs"`
|
||||
Triggers string `json:"_triggers"`
|
||||
|
||||
Reference in New Issue
Block a user