-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This contains all the tables and row entries in a central location. Now the schema creation script, the CLI and the docs can use this, so we don't have to worry about missing somewhere when adding a new entry to a table.
- Loading branch information
1 parent
ebbfa5c
commit 9edbe08
Showing
9 changed files
with
410 additions
and
361 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.tight-table td { | ||
white-space: normal !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.. -*- mode: rst -*- | ||
{% for table in ['execution','provenance','execution_alias','dataset','dependency','dataset_alias'] %} | ||
|
||
The {{table}} table | ||
---------------------------------------- | ||
|
||
.. list-table:: | ||
:header-rows: 1 | ||
:class: tight-table | ||
|
||
* - row | ||
- description | ||
- type | ||
|
||
{% for item in data[table] %} | ||
* - {{item}} | ||
{% for item2 in ['description', 'type'] %} | ||
- {{data[table][item][item2]}} | ||
{% endfor %} | ||
{% endfor %} | ||
{% endfor %} |
Oops, something went wrong.