Skip to content

Commit 4f85c83

Browse files
committed
Additional notes on downgrading
1 parent 87a5291 commit 4f85c83

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

docs/developers/applications/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ This will ensure that new records must have these properties with these types.
118118

119119
Because we ran `harperdb dev .` earlier (dev mode), Harper is now monitoring the contents of our application directory for changes and reloading when they occur. This means that once we save our schema file with these new attributes, Harper will automatically reload our application, read `my-app/schema.graphql` and update the `Dog` table and attributes we just defined. The dev mode will also ensure that any logging or errors are immediately displayed in the console (rather only in the log file).
120120

121-
As a NoSQL database, Harper supports heterogeneous records (also referred to as documents), so you can freely specify additional properties on any record. If you do want to restrict the records to only defined properties, you can always do that by adding the `sealed` directive:
121+
As a document database, Harper supports heterogeneous records, so you can freely specify additional properties on any record. If you do want to restrict the records to only defined properties, you can always do that by adding the `sealed` directive:
122122

123123
```graphql
124124
type Dog @table @sealed {

docs/technical-details/release-notes/4.tucker/4.5.0.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,6 @@ The GraphQL query endpoint can be configured to listen on different ports. Graph
6565
Glob file handling for specifying files used by components has been improved for better consistency.
6666

6767
### Table.getRecordCount
68-
`Table.getRecordCount()` is now available to get the number of records in a table.
68+
`Table.getRecordCount()` is now available to get the number of records in a table.
69+
70+
Note that downgrading from 4.5 to 4.4 is *not* supported.

0 commit comments

Comments
 (0)