-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
Add ports column to certificate_associations table #1
base: expiring-deployed-certs-notification
Are you sure you want to change the base?
Conversation
…gration Raven to sentry sdk migration
lemur/certificates/models.py
Outdated
) | ||
domain_id = Column(Integer, ForeignKey("domains.id"), primary_key=True) | ||
certificate_id = Column(Integer, ForeignKey("certificates.id"), primary_key=True) | ||
ports = Column(Text()) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is just initial version, still one thought.
Postgres support integer array as data type. Are you planning to use that and is there a Column type for that instead of Text().
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, you're completely right about this. I realized as a result of this comment that I was never committing the changes to the DB - once I added the commit, it broke. Using an integer array column works perfectly.
Force source and destination delete to remove associations with certificate
Bumps [certbot](https://github.com/letsencrypt/letsencrypt) from 1.14.0 to 1.15.0. - [Release notes](https://github.com/letsencrypt/letsencrypt/releases) - [Commits](certbot/certbot@v1.14.0...v1.15.0) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [boto3](https://github.com/boto/boto3) from 1.17.65 to 1.17.69. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](boto/boto3@1.17.65...1.17.69) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [sentry-sdk](https://github.com/getsentry/sentry-python) from 1.0.0 to 1.1.0. - [Release notes](https://github.com/getsentry/sentry-python/releases) - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGELOG.md) - [Commits](getsentry/sentry-python@1.0.0...1.1.0) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [faker](https://github.com/joke2k/faker) from 8.1.2 to 8.1.3. - [Release notes](https://github.com/joke2k/faker/releases) - [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md) - [Commits](joke2k/faker@v8.1.2...v8.1.3) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [botocore](https://github.com/boto/botocore) from 1.20.69 to 1.20.70. - [Release notes](https://github.com/boto/botocore/releases) - [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst) - [Commits](boto/botocore@1.20.69...1.20.70) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [black](https://github.com/psf/black) from 21.5b0 to 21.5b1. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/commits) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [pytest-mock](https://github.com/pytest-dev/pytest-mock) from 3.6.0 to 3.6.1. - [Release notes](https://github.com/pytest-dev/pytest-mock/releases) - [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst) - [Commits](pytest-dev/pytest-mock@v3.6.0...v3.6.1) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [hvac](https://github.com/hvac/hvac) from 0.10.10 to 0.10.11. - [Release notes](https://github.com/hvac/hvac/releases) - [Changelog](https://github.com/hvac/hvac/blob/develop/CHANGELOG.md) - [Commits](hvac/hvac@v0.10.10...v0.10.11) Signed-off-by: dependabot[bot] <[email protected]>
Bumps [boto3](https://github.com/boto/boto3) from 1.17.69 to 1.17.70. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](boto/boto3@1.17.69...1.17.70) Signed-off-by: dependabot[bot] <[email protected]>
…ons-port-column Add ports column to certificate_associations
No description provided.