Skip to content

Commit bbdf19d

Browse files
committed
Merge pull request #77 from deis/docs-readme
doc(readme): updates to reflect changes in beta3 iteration
2 parents 2a443fd + 89165b5 commit bbdf19d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The Workflow Manager Service API is responsible for interfacing with Deis Workflow data. It is a golang https implementation that speaks JSON. The API is the source of authority for the following:
44

55
* metadata about unique Deis clusters that have checked in: which components are installed at the time of check-in, and which versions
6-
* current stable version for each Deis cluster component
6+
* released version history for each Deis cluster component
77

88
Additionally, the API is the official interface for accepting Workflow Manager data, e.g.:
99

data/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,14 @@ Data is organized into three tables, with fields outlined below:
2323
* `cluster_id uuid`
2424
* `created_at timestamp`
2525
* `data json`
26-
* with a uniqueness constraint `unique (cluster_id, created_at)`
2726
* `versions`, a table that stores authoritative deis component version information
28-
* `component_name varchar(64) PRIMARY KEY`
29-
* `last_updated timestamp`
27+
* `version_id bigserial PRIMARY KEY`
28+
* `component_name varchar(32)`
29+
* `train varchar(24)`
30+
* `version varchar(32)`
31+
* `release_timestamp timestamp`
3032
* `data json`
33+
* with a uniqueness constraint `unique (component_name, train, version)`
3134

3235
## License
3336

0 commit comments

Comments
 (0)