sqlxgentools/TODO.md

31 lines
755 B
Markdown
Raw Normal View History

2024-12-27 23:00:38 +01:00
# TODO
- CREATE TABLE migration
- add unit tests
- add custom table name attribute
- add automagically generated CHECK constraints on enum type field
- support foreign key CHECK constraints
- [x] Repositories generation
2024-12-27 23:05:15 +01:00
- default CRUD boilerplate
- get_all
- get_by_id
- get_many_by_ids
2024-12-27 23:05:15 +01:00
- insert
- update
- delete_by_id
2024-12-27 23:05:15 +01:00
- custom queries
- [ ] Config file for project
2024-12-27 23:05:15 +01:00
- configure models path
- configure repositories path
- [ ] Better errors
- Better support for lib like `thiserror`
- Don't export anyhow errors
- [ ] Support basic one to many, many to one, belongs to relationships
- [ ] Support generating inner join SQL query
- [ ] Better, cleaner migration support