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
For reference: https://docs.sqlalchemy.org/en/latest/core/constraints.html#configuring-constraint-naming-conventions
We should use the recommended standard:
convention = { "ix": 'ix_%(column_0_label)s', "uq": "uq_%(table_name)s_%(column_0_name)s", "ck": "ck_%(table_name)s_%(constraint_name)s", "fk": "fk_%(table_name)s_%(column_0_name)s_%(referred_table_name)s", "pk": "pk_%(table_name)s" } metadata = MetaData(naming_convention=convention)
This will save us from problems later when dealing with indexes and constraints.
The text was updated successfully, but these errors were encountered:
Merge pull request #47 from freedomofpress/add-logging
213edf3
Add securedrop-proxy logging
Merge pull request #47 from freedomofpress/use_ryslog
ca1fcd3
Uses rsyslog based handler to log at /var/log/syslog file
No branches or pull requests
For reference: https://docs.sqlalchemy.org/en/latest/core/constraints.html#configuring-constraint-naming-conventions
We should use the recommended standard:
This will save us from problems later when dealing with indexes and constraints.
The text was updated successfully, but these errors were encountered: