@atscript/db-sqlite 0.1.37 → 0.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @atscript/db-sqlite
2
2
 
3
- SQLite adapter for `@atscript/utils-db` with a swappable driver architecture. Define your schema once in Atscript, then use it with any SQLite engine.
3
+ SQLite adapter for `@atscript/db` with a swappable driver architecture. Define your schema once in Atscript, then use it with any SQLite engine.
4
4
 
5
5
  ## Architecture
6
6
 
@@ -28,7 +28,7 @@ pnpm add @atscript/db-sqlite better-sqlite3
28
28
  ## Quick Start
29
29
 
30
30
  ```typescript
31
- import { AtscriptDbTable } from '@atscript/utils-db'
31
+ import { AtscriptDbTable } from '@atscript/db'
32
32
  import { SqliteAdapter, BetterSqlite3Driver } from '@atscript/db-sqlite'
33
33
  import { User } from './user.as'
34
34