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
commit 5381795844
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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
);