You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -18,21 +18,21 @@ Applying changes to database after releasing a new version of application is oft
18
18
during development stage, often results in a complex sequence of backward and forward steps through migrations; this process is complicated more and more especially when
19
19
working in team with concurrent changes to the models (or database schema). This package tries to solve these problems all in once.
20
20
21
-
# Table of Contents
21
+
##Table of Contents
22
22
23
23
*[node-postgres-orm](#node-postgres-orm)
24
24
*[Installation](#installation)
25
25
*[Error reporting](#error-reporting])
26
26
*[Usage error reporting](#usage-error-reporting)
27
27
*[Data error reporting](#data-error-reporting)
28
28
*[Quick Start Example](#quick-start-example)
29
+
*[Requirements](#requirements)
30
+
*[Testing](#testing)
29
31
*[Bugs](#bugs)
30
32
*[Documentation](#documentation)
31
33
*[Changelog](#changelog)
32
-
*[Requirements](#requirements)
33
-
*[Testing](#testing)
34
34
35
-
# Installation
35
+
##Installation
36
36
37
37
With [npm](https://www.npmjs.com/package/pgo):
38
38
```sh
@@ -41,15 +41,15 @@ $ npm install --save pgo
41
41
42
42
Back to: [top](#) - [ToC](#table-of-contents)
43
43
44
-
# Error reporting
44
+
##Error reporting
45
45
46
-
## Usage error reporting
46
+
###Usage error reporting
47
47
48
48
__Pgo___functions_ and _methods_ have syncornous usage error reporting. Exceptions are thrown in case of wrong
49
49
parameters number or types. Anyway it should not be required to call __pgo___functions_ in a __try catch__ block,
50
50
this kind of errors should be generated only at development time.
51
51
52
-
## Data error reporting
52
+
###Data error reporting
53
53
54
54
All __pgo___methods_ and _function_ accessing data have asyncronous error reporting to check data integrity or
0 commit comments