-
Notifications
You must be signed in to change notification settings - Fork 4.2k
refactor(accounts): move accounts related tables to accounts schema #7626
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
Merged
Gnanasundari24
merged 12 commits into
main
from
move-accounts-related-tables-to-accounts-schema
Apr 3, 2025
Merged
refactor(accounts): move accounts related tables to accounts schema #7626
Gnanasundari24
merged 12 commits into
main
from
move-accounts-related-tables-to-accounts-schema
Apr 3, 2025
Conversation
This file contains hidden or 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
jarnura
requested changes
Mar 27, 2025
jarnura
previously approved these changes
Apr 1, 2025
ALTER TABLE organization | ||
DROP CONSTRAINT organization_pkey, | ||
ALTER COLUMN org_id DROP NOT NULL; | ||
-- Create index on org_id in organization table | ||
CREATE INDEX idx_organization_org_id ON organization (org_id); |
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.
why are we creating these indexes again in v2? can you add appropriate comments?
Narayanbhat166
approved these changes
Apr 2, 2025
2 tasks
2 tasks
jarnura
approved these changes
Apr 2, 2025
pixincreate
added a commit
that referenced
this pull request
Apr 4, 2025
…acilitapay-pix-pmt * 'main' of github.com:juspay/hyperswitch: (33 commits) fix(connector): [Nexixpay] handle error code and message in failure response (#7713) fix(connector): [Coingate] Fix Wasm Changes (#7716) fix(config): add billing payment sync configs in different environments (#7708) chore(dashboard): update dashboard toml (#7703) chore(postman): update auth for payment connectors in postman collection (#7702) feat(connector): [BANKOFAMERICA] Enable SamsungPay In Dashboard (#7677) feat(session): Added dpa_client_id, provider to click to pay session response (#7683) feat(core): add network error related columns in payment attempt [v2] (#7706) chore(version): 2025.04.04.0 refactor(accounts): move accounts related tables to accounts schema (#7626) revert: implement `NameType` for name validation (#6734) (#7717) fix(errors): Entry not found error as 4xx instead of 5xx (#7712) refactor(analytics): default config for forex_enabled (#7695) refactor(core): made provider field in ctp_service_details backward compatible (#7705) refactor(openapi): modify profile-delete auth to AdminAPIKey in API doc (#7697) fix: web-docker pull from docker hub (#7700) ci(cypress): fix iatapay upi payments (#7698) docs: Updated next steps after deployment setup on Readme (#7686) chore(version): 2025.04.03.0 fix(connector): [JPMORGAN, PAYU, DIGITALVIRGO, BITPAY, HELCIM, PAYBOX] Replaced lazystatic macros with LazyLock (#7524) ...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Type of Change
Description
id
as varchar in business_profile and merchant_connector_account and added logic to populate it during creation in v1 itself.Additional Changes
Motivation and Context
How did you test it?
Create a merchant_account and MCA for that merchant account
and check if id column is populated for business_profile and mca.
MCA DB query:
Profile DB query:
Checklist
cargo +nightly fmt --all
cargo clippy