Deploying EF Core migrations in release pipelines
A guide to deploying Entity Framework Core database migrations in CI/CD release pipelines instead of on application startup.
A guide to deploying Entity Framework Core database migrations in CI/CD release pipelines instead of on application startup.
Explores the design and implementation of a custom database migration system using Bun ORM for the Nixopus project, focusing on reliability and automation.
Introduces fastmigrate, a simple Python tool for managing SQLite database migrations without requiring a specific ORM.
A guide on managing Entity Framework Core migrations during development within .NET Aspire distributed applications.
Explains how to fix the 'Unable to resolve service for DbContextOptions' error in Entity Framework Core using IDesignTimeDbContextFactory.
Author discusses writing a technical article on using Alembic for database migrations in Python, published on TestDriven.io.
Explains challenges and best practices for handling Sidekiq background job restarts during Rails application deployments.
Explores challenges and best practices for managing database schema changes in development teams, focusing on automation and CI/CD integration.
How to use the Flyway baseline command to introduce database migrations into an existing, pre-populated database schema.
A guide on migrating existing databases to use Entity Framework Core's built-in data seeding feature without causing insertion conflicts.
A guide to best practices for database schema migrations, focusing on tools like Flyway and Hibernate for evolving applications.
Strategies for performing safe, low-downtime database migrations in PostgreSQL, focusing on adding columns and creating indexes on large tables.
A guide on safely adding NOT NULL columns in PostgreSQL without downtime, by breaking the migration into multiple steps.
Explores how relational databases like PostgreSQL can adopt benefits from NoSQL, such as schemaless flexibility and JSON document storage.