tortoise / tortoise/tortoise-orm
Allow UNIQUE postgres indexes
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 5.6k
- Forks
- 516
- Avg merge
- 2d 21h
- Merged PRs (30d)
- 9
Description
Is your feature request related to a problem? Please describe.
It should be possible to do:
PostgreSQLIndex(unique=True, ...)
And we should easily get the unique index on a set of fields (with any conditions)
https://www.postgresql.org/docs/current/indexes-unique.html
Describe the solution you'd like
A clear and concise description of what you want to happen.
Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered.
Additional context
Add any other context about the feature request here.
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
No implementation files or tests are named. Start by locating PostgreSQLIndex and the existing index-generation tests, then trace how conditional and field-based indexes are handled; done means PostgreSQLIndex(unique=True, ...) supports unique indexes, including conditional field sets, with regression tests.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- postgresql, python
- Domain
- database
- Issue type
- Feature
- Difficulty
- 4/5
- Estimated time
- 3-5 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 42/100