- Create a new Repository in GitHub based on this template
- The name should be in the form
dbup-nameofthenewprovider
- It should be public
- The name should be in the form
- Create PR to add the name of the repo to the
AllProviders.txt
file in theDbUp
repository - Clone it
- Open it in VSCode or other light weight editor that doesn't have strong opinions about solution/project structure (i.e. not Rider/VS)
- Rename the following:
dbup-newprovider.sln
dbup-newprovider.sln.DotSettings
dbup-newprovider\dbup-newprovider.csproj
dbup-newprovider
directory
- Search for
NewProvider
and replace with the new provider's name, turning on the preserve case option - Run
dotnet build
to ensure it builds - Uncomment the
push
andpull_request
lines in.github\workflows\main.yml
- Delete these instructions up to and including the next line, then check in
DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.
To learn more about DbUp check out the documentation
Please only log issue related to NewProvider support in this repo. For cross cutting issues, please use our main issue list.
See the readme in our main repo for how to get started and contribute.