Hyperbee.Migrations
2.0.0
dotnet add package Hyperbee.Migrations --version 2.0.0
NuGet\Install-Package Hyperbee.Migrations -Version 2.0.0
<PackageReference Include="Hyperbee.Migrations" Version="2.0.0" />
paket add Hyperbee.Migrations --version 2.0.0
#r "nuget: Hyperbee.Migrations, 2.0.0"
// Install Hyperbee.Migrations as a Cake Addin #addin nuget:?package=Hyperbee.Migrations&version=2.0.0 // Install Hyperbee.Migrations as a Cake Tool #tool nuget:?package=Hyperbee.Migrations&version=2.0.0
Hyperbee Migrations
Introduction
Hyperbee Migrations is a migration framework for .NET. Migrations are a structured way to alter your database schema and are an alternative to creating lots of database scripts that have to be run manually by every developer involved. Migrations solve the problem of evolving a database schema (and data) for multiple databases (for example, the developer's local database, the test database and the production database). Database changes are described in classes written in C# that can be checked into a version control system.
The framework API is heavily influenced by Fluent Migrator and Raven Migrations.
The Runner
At the heart of migrations is the MigrationRunner. The migration runner scans all provided assemblies for classes deriving from the Migration base class and then orders them according to their migration attribute value.
After each migration is executed, a MigrationRecord is inserted into your database, unless no journaling is set. This ensures that the next time the runner is executed, previously completed migrations are not executed again. When a migration is rolled back the MigrationRecord is removed.
You can modify the runner options by passing an action to the .AddCouchbaseMigrations call:
// In Startup.cs
public void ConfigureServices( IServiceCollection services )
{
services.AddCouchbaseMigrations( options =>
{
// Configure migration options
options.Direction = Direction.Down;
});
}
Profiles
There are times when you may want to scope migrations to specific environments. To allow this Hyperbee Migrations supports profiles. For instance, some migrations might only run during development. By decorating your migration with the profile of "development" and setting options to include only that profile, you can control which migrations run in which environments.
[Migration(3, null,null, true,"development")]
public class DevelopmentOnlyMigration : Migration
{
public async override Task UpAsync( CancellationToken cancellationToken = default )
{
// do something nice for local developers
}
}
...
// In Startup.cs
public void ConfigureServices( IServiceCollection services )
{
services.AddCouchbaseMigrations( options =>
{
// Configure to only run development migrations
options.Profiles = new[] { "development" } };
});
}
A migration may belong to multiple profiles.
[Migration(3, null,null, true,"development", "staging")]
public class TargetedMigration : Migration
{
// ...
}
This migration will run if either the development or the stating profile is specified in MigrationOptions.
The Record Store
Hyperbee Migrations currently supports Couchbase, MongoDB & Postgres databases but it can easily be extended. The steps are:
- Derive from IMigrationRecordStore
- Derive from MigrationOptions to add any store specific configuration
- Implement ServiceCollectionExtensions to register your implementation
See the one of the current implementations for reference.
Configure Local Solution
To run the migration solution you will need to add some local configuration.
appsettings.developer.json
{
"Couchbase": {
"ConnectionString": "couchbase://localhost"
}
}
Manage User Secrets
{
"Couchbase:UserName": "Administrator",
"Couchbase:Password": "_YOUR_PASSWORD_"
}
Using Sample Runners
Currently there is are sample runners for each of the database providers. These provider a simple console app that can be run using a command line or built into a docker image.
Running From The Command Line
Once installed as a dotnet tool, the runner can be run from the command line. The runner expects, and will use settings
from the appSettings.json
in the execution folder. Arguments can also be provided from the command line.
Command Line Options
Switch | Alias | Description |
---|---|---|
-f | --file | From Paths Array |
-a | --assembly | From Assemblies Array |
-p | --profile | Profiles Array |
-b | --bucket | Bucket Name |
-s | --scope | Scope Name |
-c | --collection | Collection Name |
-usr | --user | Database User |
-pwd | --password | Database Password |
-cs | --connection | Database Connection String |
Runtime Configuration
{
"Couchbase": {
"ConnectionString": "__CONNECTION_STRING_HERE__",
"UserName": "__SECRET_HERE__",
"Password": "__SECRET_HERE__",
"MaxConnectionLimit": 20
},
"Migrations": {
"BucketName": "hyperbee",
"ScopeName": "migrations",
"CollectionName": "ledger",
"Lock": {
"Enabled": false,
"Name": "migration-runner-mutex",
"MaxLifetime": 3600,
"ExpireInterval": 300,
"RenewInterval": 120
},
"FromPaths": [
"c:\\my-migration-assembly.dll"
],
"FromAssemblies": [
]
},
"Serilog": {
"MinimumLevel": {
"Default": "Debug",
"Override": {
"Couchbase": "Warning",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"System": "Warning"
}
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
-
net9.0
- Cronos (>= 0.8.4)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Hosting.Abstractions (>= 9.0.0)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.0)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Hyperbee.Migrations:
Package | Downloads |
---|---|
Hyperbee.Migrations.Providers.Couchbase
Hyperbee Migrations Postgres Provider adds Couchbase support to Hyperbee Migrations. |
|
Hyperbee.Migrations.Providers.MongoDB
Hyperbee Migrations Postgres Provider adds MongoDB support to Hyperbee Migrations. |
|
Hyperbee.Migrations.Providers.Postgres
Hyperbee Migrations Postgres Provider adds Postgres support to Hyperbee Migrations. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.0 | 74 | 11/21/2024 |
2.0.0-develop.241121151205 | 35 | 11/21/2024 |
2.0.0-develop.241121145735 | 34 | 11/21/2024 |
1.2.7 | 163 | 4/30/2024 |
1.2.7-develop.240430153808 | 60 | 4/30/2024 |
1.2.7-develop.240430124929 | 63 | 4/30/2024 |