We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Would be useful to extract additional info from constraints and indexes.
For instance:
CREATE UNIQUE INDEX <NAME> ON <CONTEXT>.<TABLE> USING <INDEX_METHOD> (<COLUMN>)
Allows you to extract that <CONTEXT>.<TABLE>.<COLUMN> is unique -- can just add a JSDoc comment about uniqueness or a type alias.
<CONTEXT>.<TABLE>.<COLUMN>
https://www.postgresql.org/docs/current/ddl-constraints.html
Additionally, by either reflecting on explicit constraints or <TABLE>_<FOREIGN_KEY> you can infer that there are assoc relationships.
<TABLE>_<FOREIGN_KEY>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would be useful to extract additional info from constraints and indexes.
For instance:
Allows you to extract that
<CONTEXT>.<TABLE>.<COLUMN>
is unique -- can just add a JSDoc comment about uniqueness or a type alias.https://www.postgresql.org/docs/current/ddl-constraints.html
Additionally, by either reflecting on explicit constraints or
<TABLE>_<FOREIGN_KEY>
you can infer that there are assoc relationships.The text was updated successfully, but these errors were encountered: