-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[AC-1360] Add logic to automatically populate the reseller name field #3149
[AC-1360] Add logic to automatically populate the reseller name field #3149
Conversation
…er names with value from BusinessName
New Issues
|
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.
This should be in the DbScripts_data_migration
folder because it is data migration only. And you need to coordinate with devops so they know to run it.
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.
As discussed, providers are not supported on self-hosted, so EF migrations are not required.
Type of change
Objective
Reseller providers were being created without a value for the
Name
column, just a value in theBusinessName
column.This PR addresses this by adding a new field to the Reseller creation form and by populating existing Providers
Name
column with the value from theBusinessName
column.Code changes
Name
columnName
columnName
column for existing entries with aNULL
valueBefore you submit
dotnet format --verify-no-changes
) (required)