chore: add postgres schema migrations

This commit is contained in:
chungyeong
2026-05-09 22:30:49 +09:00
parent 6bd4c9382a
commit 38f3472d9c
18 changed files with 3399 additions and 1 deletions

18
packages/db/package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "@devflow/db",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"typecheck": "tsc -b --noEmit",
"test": "vitest run"
},
"dependencies": {
"drizzle-orm": "0.45.2",
"pg": "8.20.0"
}
}