drizzle-orm 0.23.3-5221bba → 0.23.3

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.
Files changed (2) hide show
  1. package/README.md +13 -12
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -28,16 +28,17 @@ Drizzle ORM is being battle-tested on production projects by multiple teams 🚀
28
28
 
29
29
  ## Supported databases
30
30
 
31
- | Database | Status | |
32
- |:------------|:-------:|:---|
33
- | PostgreSQL | | [Docs](./drizzle-orm/src/pg-core/README.md)|
34
- | MySQL | |[Docs](./drizzle-orm/src/mysql-core/README.md)|
35
- | SQLite | |[Docs](./drizzle-orm/src/sqlite-core/README.md)|
36
- | [Cloudflare D1](https://developers.cloudflare.com/d1) | | [Docs](./examples/cloudflare-d1/README.md) |
37
- | [libSQL](https://libsql.org) | | [Example](/examples/libsql/README.md) |
38
- | DynamoDB | | |
39
- | MS SQL | | |
40
- | CockroachDB | | |
31
+ | Database | Status | |
32
+ |:------------------------------------------------------|:------:|:-----------------------------------------------|
33
+ | PostgreSQL | | [Docs](/drizzle-orm/src/pg-core/README.md) |
34
+ | MySQL | | [Docs](/drizzle-orm/src/mysql-core/README.md) |
35
+ | SQLite | | [Docs](/drizzle-orm/src/sqlite-core/README.md) |
36
+ | [Cloudflare D1](https://developers.cloudflare.com/d1) | | [Docs](/examples/cloudflare-d1/README.md) |
37
+ | [libSQL](https://libsql.org) | | [Docs](/examples/libsql/README.md) |
38
+ | [Turso](https://turso.tech) | ✅ | [Docs](/examples/libsql/README.md) |
39
+ | DynamoDB | | |
40
+ | MS SQL | | |
41
+ | CockroachDB | ⏳ | |
41
42
 
42
43
  ## Installation
43
44
 
@@ -53,8 +54,8 @@ npm install -D drizzle-kit
53
54
  ```typescript
54
55
  import { eq } from 'drizzle-orm/expressions';
55
56
  import { drizzle } from 'drizzle-orm/node-postgres';
56
- import { InferModel, integer, pgTable, serial, text, timestamp, varchar } from 'drizzle-orm/pg-core';
57
- import { sql } from 'drizzle-orm/sql';
57
+ import { integer, pgTable, serial, text, timestamp, varchar, sql } from 'drizzle-orm/pg-core';
58
+ import { InferModel } from 'drizzle-orm';
58
59
  import { Pool } from 'pg';
59
60
 
60
61
  export const users = pgTable('users', {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drizzle-orm",
3
- "version": "0.23.3-5221bba",
3
+ "version": "0.23.3",
4
4
  "description": "Drizzle ORM package for SQL databases",
5
5
  "scripts": {
6
6
  "build": "tsc && resolve-tspaths && cp ../README.md package.json dist/",