Skip to content

Commit f37b790

Browse files
committed
0.5.1
1 parent b573f59 commit f37b790

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Sqlite ORM for deno. Tables with relations are not supporeted.
33
#### Usage
44
**Create an instance of the ORM:**
55
```typescript
6-
import { SqliteOrm, SqlTable } from 'https://raw.githubusercontent.com/Blockzilla101/deno-sqlite-orm/0.5.0/mod.ts';
6+
import { SqliteOrm, SqlTable } from 'https://raw.githubusercontent.com/Blockzilla101/deno-sqlite-orm/0.5.1/mod.ts';
77
const orm = new SqliteOrm({
88
dbPath: 'path/to/database.db'
99
});
@@ -128,7 +128,7 @@ orm.aggregateSelect<[foo: string, count: number]>(Foo, {
128128
Objects are converted to JSON before saving, and parsed when read. If its a class instance then the class should be registered
129129
by `@registerJsonSerializabe()`
130130
```typescript
131-
import { registerJsonSerializabe } from 'https://raw.githubusercontent.com/Blockzilla101/deno-sqlite-orm/0.5.0/mod.ts';
131+
import { registerJsonSerializabe } from 'https://raw.githubusercontent.com/Blockzilla101/deno-sqlite-orm/0.5.1/mod.ts';
132132

133133
@registerJsonSerializabe(['ignored'])
134134
class Bar {
@@ -146,7 +146,7 @@ class Foo extends SqlTable {
146146
147147
##### Example
148148
```typescript
149-
import { SqliteOrm, SqlTable } from 'https://raw.githubusercontent.com/Blockzilla101/deno-sqlite-orm/0.5.0/mod.ts';
149+
import { SqliteOrm, SqlTable } from 'https://raw.githubusercontent.com/Blockzilla101/deno-sqlite-orm/0.5.1/mod.ts';
150150
const orm = new SqliteOrm({
151151
dbPath: 'path/to/database.db',
152152
});

0 commit comments

Comments
 (0)