feat(effect-drizzle-sqlite): add vendored sqlite adapter (#28547)

This commit is contained in:
Kit Langton
2026-05-20 20:09:07 -04:00
committed by GitHub
parent 7b9d7a7b7d
commit 5381795844
28 changed files with 3697 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
CREATE TABLE users (
id integer PRIMARY KEY AUTOINCREMENT NOT NULL,
name text NOT NULL
);