@beignet/provider-db-drizzle 0.0.31 → 0.0.32
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/CHANGELOG.md +7 -0
- package/README.md +2 -2
- package/package.json +1 -1
- package/skills/database-provider/SKILL.md +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ idempotency, or outbox, generate the provider-owned table exports into the app
|
|
|
110
110
|
schema:
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
|
-
bun beignet db schema
|
|
113
|
+
bun beignet db schema sync
|
|
114
114
|
```
|
|
115
115
|
|
|
116
116
|
That writes `infra/db/schema/beignet.ts` and adds
|
|
@@ -1118,7 +1118,7 @@ Each backend also exports canonical Beignet operational table definitions:
|
|
|
1118
1118
|
- `@beignet/provider-db-drizzle/mysql/schema`
|
|
1119
1119
|
|
|
1120
1120
|
Each schema subpath exports `auditLog`, `idempotencyRecords`, and
|
|
1121
|
-
`outboxMessages`. Prefer `beignet db schema
|
|
1121
|
+
`outboxMessages`. Prefer `beignet db schema sync` in apps so the selected
|
|
1122
1122
|
exports are re-exported from your app schema index before Drizzle Kit generates
|
|
1123
1123
|
migrations.
|
|
1124
1124
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@beignet/provider-db-drizzle",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Drizzle ORM database providers for Beignet — typed DbPort, unit of work, audit logs, outbox, and idempotency for SQLite (libSQL/Turso), Postgres, and MySQL.",
|
|
6
6
|
"exports": {
|
|
@@ -40,7 +40,7 @@ When audit, idempotency, or outbox need provider-owned SQL tables, generate the
|
|
|
40
40
|
Beignet table exports into the app schema, then run the normal migration flow:
|
|
41
41
|
|
|
42
42
|
```bash
|
|
43
|
-
beignet db schema
|
|
43
|
+
beignet db schema sync
|
|
44
44
|
beignet db generate
|
|
45
45
|
beignet db migrate
|
|
46
46
|
```
|