-
Notifications
You must be signed in to change notification settings - Fork 89
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
feat(auth, backend): add migration files for updating Rafiki resources with multiple tenant support #2904
Closed
sanducb
wants to merge
7
commits into
2893-multi-tenant-rafiki
from
2894-multi-tenant-rafiki-update-all-resources-to-have-a-tenantid-foreign-key
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* feat(backend): add trace to outgoing payment lifecycle * feat(backend): encapsulate query lookup in trace * chore(localenv): remove traces from default localenv --------- Co-authored-by: Max Kurapov <[email protected]>
1 task
github-actions
bot
added
pkg: backend
Changes in the backend package.
pkg: auth
Changes in the GNAP auth package.
labels
Aug 27, 2024
❌ Deploy Preview for brilliant-pasca-3e80ec failed.
|
sanducb
changed the title
Add migration files for updating Rafiki resources with multiple tenant support
feat: Add migration files for updating Rafiki resources with multiple tenant support
Aug 27, 2024
sanducb
changed the title
feat: Add migration files for updating Rafiki resources with multiple tenant support
feat(auth,backend): Add migration files for updating Rafiki resources with multiple tenant support
Aug 27, 2024
sanducb
changed the title
feat(auth,backend): Add migration files for updating Rafiki resources with multiple tenant support
feat(auth, backend): Add migration files for updating Rafiki resources with multiple tenant support
Aug 27, 2024
golobitch
changed the title
feat(auth, backend): Add migration files for updating Rafiki resources with multiple tenant support
feat(auth, backend): add migration files for updating Rafiki resources with multiple tenant support
Aug 27, 2024
njlie
approved these changes
Aug 27, 2024
Closing this PR as |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes proposed in this pull request
Changes consist of creating
tenants
table for both Rafiki backend and auth services, as well as addingtenantId
as a foreign key for Rafiki backend resources.Context
This PR introduces some of the changes needed for achieving multi-tenancy on Rafiki.
Closes #2894
Checklist
tenants
table in Rafiki auth dbgrants
table withtenantId
foreign key in Rafiki auth dbtenants
table in Rafiki backend dbwalletAddresses
,incomingPayments
,outgoingPayments
andquotes
tables withtenantId
foreign key in Rafiki backend db