doc: add TODOs
All checks were successful
CI / build-docker (push) Successful in 5s
CI / build-docker-bootstrap (push) Has been skipped
CI / release-test (push) Successful in 26s

This commit is contained in:
wispem-wantex 2026-01-31 20:35:03 -08:00
parent a36058fdbe
commit 04676461ff
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ sample_data/data
# Legacy versions
.cmd-old/
pkg/.testapp
.claude

View File

@ -26,6 +26,14 @@ TODO: language-server-for-TODO.txt
TODO: auto-migration-checker
- Use `pkg/schema` to test whether a base schema plus a migration equals a new schema
TODO: codegen SaveXyz update path doesn't check foreign keys
- Insert path has FK error handling, but the update path wraps everything in Must
- An update that violates an FK constraint will panic instead of returning an error
TODO: codegen `without rowid` tables properly
TODO: generated test file inclues global test DB setup, which is wrong
TODO: join-tables
- handle codegen for without rowid tables properly
- add "get all "

View File

@ -7,6 +7,7 @@ sudo docker run --rm -it \
-v "$(go env GOMODCACHE):/gocache-vol/mod-cache" \
-e GOMODCACHE=/gocache-vol/mod-cache \
-e GOLANGCI_LINT_CACHE=/gocache-vol/lint-cache \
-v /memory:/memory \
--workdir /code \
--net host \
gas