惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

T
Tailwind CSS Blog
博客园 - 【当耐特】
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
小众软件
小众软件
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
B
Blog
有赞技术团队
有赞技术团队
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
Recent Announcements
Recent Announcements
Jina AI
Jina AI
Vercel News
Vercel News
博客园 - 叶小钗
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
F
Fortinet All Blogs
The Cloudflare Blog
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Two branches, the same migration number, one broken deplo...
benjamin · 2026-06-12 · via DEV Community
Cover image for Two branches, the same migration number, one broken deploy. I built a zero-dep linter for that.

benjamin

Here's a failure I've now watched happen on three different teams.

Two people branch off main. Alice adds 0007_add_index.up.sql. Bob adds
0007_add_orders_fk.up.sql. Both PRs pass CI in isolation — of course they do,
each migration is fine on its own. Both merge. Now main has two migrations
claiming version 0007
, and depending on which migration tool you use, the
runner either picks one and silently skips the other, or aborts the entire
deploy with a version-conflict error nobody can reproduce locally.

This isn't an exotic bug. It's a known, recurring limitation
in essentially every sequence-numbered migration tool. The collision is invisible
right up until it runs in the one environment where you least want surprises.

Why nothing already caught it

The frustrating part: the fix is trivial. You just have to look at the
filenames
and notice two of them start with the same number. So why wasn't this
already linted?

Because the existing linters are tied to a framework or need a live database:

  • django-migration-linter — Django only.
  • migration-lint on PyPI — Django / Alembic only.
  • Flyway's own validation — Flyway only, and it wants a DB connection.

If your team uses raw SQL with goose, dbmate, golang-migrate, or a
hand-rolled migrations/ folder — which is a lot of teams — there is nothing
that just reads the directory and tells you it's sane. So everyone re-writes the
same 30-line "check for duplicate numbers" shell script, badly, once.

I got tired of re-writing it. So I made migrolint.

What it checks

migrolint reads only filenames. No database, no framework, no config. Four rules:

Rule Severity Meaning
DUPE_NUM error two migrations share a version number (the collision above)
MISSING_DOWN warning an up migration with no matching down (only flagged if you use up/down splits)
SEQ_GAP warning a hole in an integer sequence — usually a deleted or un-merged migration
BAD_FORMAT warning a file whose name no known convention recognizes
$ migrolint db/migrations
migrolint db/migrations (14 files, 12 migrations)

  ✗ DUPE_NUM     version 0007 used by 2 migrations:
       0007_add_index.up.sql
       0007_add_orders_fk.up.sql
  ⚠ MISSING_DOWN 0009_drop_legacy.up.sql — no matching .down file
  ⚠ SEQ_GAP      missing version(s): 8

1 error, 2 warnings.

Exit code is 1 on errors, 0 when clean — so it drops straight into a
pre-commit hook or a CI step:

- run: npx migrolint --strict   # --strict makes warnings fail too

It speaks your naming convention

The whole trick is parsing version numbers out of filenames across the
conventions people actually use, so you don't have to configure anything:

Convention Example
Flyway V1__init.sql, U1__undo.sql, R__refresh.sql
golang-migrate / dbmate 0001_create_users.up.sql + .down.sql
goose / Rails 20230101120000_create_users.sql (timestamp)
minimalist 1_init.sql, 2-add-index.sql

Timestamp-style versions are recognized but exempt from SEQ_GAP (they're never
meant to be contiguous), and well-known non-migration files like schema.rb and
structure.sql are skipped automatically.

Install

npx migrolint                 # Node
pip install migrolint         # Python — same checks, same flags

Zero dependencies on both sides — pure stdlib. It auto-detects migrations/,
db/migrations/, supabase/migrations/, and a few other common paths, or you
point it at a directory.

A few design choices I'd defend

  • Filenames only, on purpose. No DB connection means it runs in a fraction of a second, in any repo, with no credentials — exactly what you want in a pre-commit hook. The DB-connected checks (does this migration actually apply?) are a different tool's job.
  • Deterministic output. It sorts entries before analyzing, so the verdict doesn't depend on filesystem ordering and the Node and Python ports produce byte-identical results. A mixed-language team gets one answer.
  • Conservative warnings. MISSING_DOWN only fires if your project actually uses .up/.down splits — forward-only setups don't get nagged. The goal is zero false positives, because a linter that cries wolf gets --no-verify'd.

It's MIT, both repos are public:
migrolint (Node) ·
migrolint-py (Python).


I'm curious where the gaps are: what migration-folder convention does your team
use, and what other filename-level mistakes have bitten you
that a tool like
this should catch? Down-migrations that don't actually reverse the up? Timestamp
collisions to the second? Tell me and I'll look at adding rules for them.