承接 kz370/laravel-migration-drift 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kz370/laravel-migration-drift

Composer 安装命令:

composer require kz370/laravel-migration-drift

包简介

A Laravel package to detect and fix schema drift between database and migrations.

README 文档

README

A powerful Laravel package to detect and fix schema drift between your actual database and your migration files.

Why is this useful?

In a perfect world, your database schema exactly matches your migrations. In reality, "drift" happens:

  • Developers manually add indexes or columns to the database for debugging or optimization and forget to create a migration.
  • Merged branches might conflict in ways that migrations run but result in unexpected states.
  • Legacy databases might have extra tables or columns not tracked in Laravel.

Laravel Migration Drift solves this by:

  1. Introspecting your live database schema.
  2. Simulating your migrations in a completely isolated in-memory SQLite database to determine the "perfect" expected state.
  3. Comparing the two to find missing tables, extra columns, type mismatches, and index differences.
  4. Generating SQL to fix the drift automatically.

Support for Multiple Connections

Yes! This package supports multiple database connections.

If you have multiple connections defined in your config/database.php (e.g., mysql, pgsql, tenant), you can specify which connection to check using the --database option.

Usage

Check for drift:

# Check default connection
php artisan migration:check-drift

# Check specific connection
php artisan migration:check-drift --database=tenant

# Generate a report file
php artisan migration:check-drift --report
php artisan migration:check-drift --report --report-format=html

Fix drift:

# Preview fixes for default connection
php artisan migration:fix-drift --dry-run

# Fix specific connection
php artisan migration:fix-drift --database=tenant

Features

  • Drift Detection: Finds missing tables, extra columns, and modified types.
  • Reporting: Generates reports in Markdown, HTML, or JSON formats.
  • Strict Mode: Optional strict comparison for precise type matching.
  • CI/CD Ready: Returns exit code 1 if drift is detected, making it perfect for CI pipelines.
  • Auto-Fix: Generates ALTER TABLE and CREATE TABLE statements to sync your DB.
  • Safe: Fixes require confirmation (unless --force is used) and won't drop data/tables automatically without clear comments.

Extra Tables (Safety First)

If your database has tables that are not in your migrations (e.g. legacy tables, analytics, etc.), this package will:

  1. Report them as "Extra Tables" in the check command.
  2. Ignore them intentionally when generating fixes. It will NEVER automatically generate DROP TABLE statements for them.
  3. Instead, it will output a commented-out SQL suggestion (e.g., -- DROP TABLE analytics;) so you can manually run it if you really intended to delete it.

You can also explicitly ignore known extra tables using the --ignore-tables option:

php artisan migration:check-drift --ignore-tables=analytics,legacy_data

Installation

composer require kz370/laravel-migration-drift

kz370/laravel-migration-drift 适用场景与选型建议

kz370/laravel-migration-drift 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 0 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 26 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 kz370/laravel-migration-drift 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 kz370/laravel-migration-drift 我们能提供哪些服务?
定制开发 / 二次开发

基于 kz370/laravel-migration-drift 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 0
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 27
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-26