{"id":23693242,"url":"https://github.com/stillpoint-software/hyperbee.migrations","last_synced_at":"2026-01-21T20:03:23.854Z","repository":{"id":237269409,"uuid":"566406001","full_name":"Stillpoint-Software/hyperbee.migrations","owner":"Stillpoint-Software","description":"A .NET database migration framework for Postgresql, MongoDb, and Couchbase","archived":false,"fork":false,"pushed_at":"2025-12-23T16:51:05.000Z","size":2696,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-24T06:49:14.167Z","etag":null,"topics":["couchbase","cron","csharp","database","dotnet","migration","mongodb","postgresql"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Stillpoint-Software.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-11-15T15:54:38.000Z","updated_at":"2025-12-23T16:47:43.000Z","dependencies_parsed_at":"2025-04-29T15:47:18.144Z","dependency_job_id":"7e24ba11-158d-416b-b641-fe087299a9f5","html_url":"https://github.com/Stillpoint-Software/hyperbee.migrations","commit_stats":null,"previous_names":["stillpoint-software/hyperbee.migrations"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/Stillpoint-Software/hyperbee.migrations","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stillpoint-Software%2Fhyperbee.migrations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stillpoint-Software%2Fhyperbee.migrations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stillpoint-Software%2Fhyperbee.migrations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stillpoint-Software%2Fhyperbee.migrations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Stillpoint-Software","download_url":"https://codeload.github.com/Stillpoint-Software/hyperbee.migrations/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stillpoint-Software%2Fhyperbee.migrations/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28641293,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T18:04:35.752Z","status":"ssl_error","status_checked_at":"2026-01-21T18:03:55.054Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["couchbase","cron","csharp","database","dotnet","migration","mongodb","postgresql"],"created_at":"2024-12-30T03:50:43.215Z","updated_at":"2026-01-21T20:03:23.848Z","avatar_url":"https://github.com/Stillpoint-Software.png","language":"C#","readme":"# Hyperbee Migrations\n\n## Introduction\n\nHyperbee Migrations is a migration framework for .NET. Migrations are a structured way to alter your database\nschema and are an alternative to creating lots of database scripts that have to be run manually by every\ndeveloper involved. Migrations solve the problem of evolving a database schema (and data) for multiple databases\n(for example, the developer's local database, the test database and the production database). Database changes\nare described in classes written in C# that can be checked into a version control system.\n\nThe framework API is heavily influenced by [Fluent Migrator](https://github.com/schambers/fluentmigrator), [Raven Migrations](https://github.com/migrating-ravens/RavenMigrations) and [DbUp](https://github.com/DbUp/DbUp)\n\nThe Cron Helper uses HangFire Cronos.\n\n### Features include:\n\n* Easy integration\n* Supports **Couchbase**, **MongoDB** and **Postgresql**\n* Preventing simultaneous migrations\n    * By default, Hyperbee Migrations prevents parallel migration runner execution.\n* Profiles \n    * There are times when you may want to scope migrations to specific environments.\n* A Record Store\n    * Keeps list of migrations that have completed\n* Local Solutions\n    * Run a migration locally\n* Run from Command Line\n    * Run a migration at the command line\n* Cron Helper\n    * Run a migration based on a start and stop criteria using a cron setting\n* Journaling\n    * You can determine whether or not to journal the migration\n\n### A Migration Example\n\nA migration looks like the following:\n\n```c#\n// #1 - specify the migration number\n[Migration(1)]\npublic class PeopleHaveFullNames : Migration // #2 inherit from Migration\n{\n    // #3 do the migration\n    public async override Task UpAsync( CancellationToken cancellationToken = default )\n    {\n    }\n\n    // #4 optional: undo the migration\n    public async override Task DownAsync( CancellationToken cancellationToken = default )\n    {\n    }\n}\n\n```\n\n# Build Requirements\n\n* To build and run this project, **.NET 8, 9 or 10 SDK** is required.\n* Ensure your development tools are compatible with .NET 8, 9 or 10.\n\n## Building the Solution\n\n* With .NET 8, 9 or 10 SDK installed, you can build the solution using the standard `dotnet build` command.\n\n\n# Status\n\n| Branch     | Action                                                                                                                                                                                                                      |\n|------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `develop`  | [![Build status](https://github.com/Stillpoint-Software/hyperbee.migrations/actions/workflows/pack_publish.yml/badge.svg?branch=develop)](https://github.com/Stillpoint-Software/hyperbee.migration/actions/workflows/pack_publish.yml)  |\n| `main`     | [![Build status](https://github.com/Stillpoint-Software/hyperbee.migrations/actions/workflows/pack_publish.yml/badge.svg)](https://github.com/Stillpoint-Software/hyperbee.migration/actions/workflows/pack_publish.yml)                 |\n\n\n# Help\n See [Todo](https://github.com/Stillpoint-Software/hyperbee.migrations/blob/main/docs/todo.md)\n\n[![PostgresTest](https://github.com/Stillpoint-Software/hyperbee.migrations/blob/main/assets/hyperbee.svg?raw=true)](https://github.com/Stillpoint-Software/hyperbee.migrations)\n\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstillpoint-software%2Fhyperbee.migrations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstillpoint-software%2Fhyperbee.migrations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstillpoint-software%2Fhyperbee.migrations/lists"}