-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Test improvement added reading parallel schema for postgres * Update devDependencies * Update .travis.yml Using PostgreSQL 9.5 * Refactored reading methods Reading different types of database objects with a single call to the 'read()' method Remove 'read.tables()' and 'read.sequences()' methods * Update README
- Loading branch information
Showing
27 changed files
with
303 additions
and
253 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
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Check | ||
|
||
## name | ||
|
||
- Type: `String` | ||
|
||
Constraint name | ||
|
||
## condition | ||
|
||
- Type: `string` |
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# ForeignKey | ||
|
||
## name | ||
|
||
- Type: `String` | ||
|
||
Constraint name | ||
|
||
## columns | ||
|
||
- Type: `Array<String>` | ||
|
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Index | ||
|
||
## name | ||
|
||
- Type: `String` | ||
|
||
Index name | ||
|
||
## columns | ||
|
||
- Type: `Array<String>` | ||
|
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# PrimaryKey | ||
|
||
## name | ||
|
||
- Type: `String` | ||
|
||
Constraint name | ||
|
||
## columns | ||
|
||
- Type: `Array<String>` | ||
|
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 |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# unique | ||
|
||
## name | ||
|
||
- Type: `String` | ||
|
||
Constraint name | ||
|
||
## columns | ||
|
||
- Type: `Array<String>` | ||
|
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 |
---|---|---|
@@ -1,15 +1,10 @@ | ||
# Methods | ||
|
||
## read.tables | ||
## read | ||
|
||
- Arguments: (names: `Array<String>`) | ||
- Returns: [`Promise<TableMetadata>`](metadata/table.md) | ||
- Arguments: (`{ ['tables' | 'sequences']: Array<String> }`) | ||
- Returns: `Promise<{ ['tables' | 'sequences']: Map<String, Metadata | undefined> }>` | ||
|
||
Getting the metadata of an existing tables | ||
> see [table metadata](metadata/table.md) and [sequence metadata](metadata/sequence.md) | ||
## read.sequences | ||
|
||
- Arguments: (names: `Array<String>`) | ||
- Returns: [`Promise<SequenceMetadata>`](metadata/sequence.md) | ||
|
||
Getting the metadata of an existing sequences | ||
Getting the metadata of an existing objects |
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
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
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
Oops, something went wrong.