name: database-schema-differ description: Compare database schemas across environments, generate migration scripts, and track schema evolution. version: 1.0.0 author: skill-factory metadata: openclaw: requires: bins: - python3 python: - sqlalchemy - alembic
A CLI tool to compare database schemas across different environments (development, staging, production), generate migration scripts, and track schema evolution over time. Support for PostgreSQL, MySQL, SQLite, and other databases via SQLAlchemy.
Key features: - Schema comparison: Compare schemas between databases, branches, or points in time - Migration generation: Automatically generate SQL migration scripts (up/down) for schema changes - Schema snapshots: Capture and store schema snapshots for historical comparison - Drift detection: Identify schema drift between environments (dev vs prod, etc.) - Multiple database support: PostgreSQL, MySQL, SQLite, SQL Server, Oracle via SQLAlchemy - Export formats: Generate SQL, JSON, or visual diff outputs - Integration ready: Works with Alembic, Django migrations, or standalone - Change tracking: Track schema evolution over time with versioning - CI/CD friendly: Output machine-readable formats for automation pipelines
Basic commands:
# Compare two database connections
python3 scripts/main.py compare postgresql://user:pass@host1/db postgresql://user:pass@host2/db
# Generate migration script from schema differences
python3 scripts/main.py diff dev_db.sql prod_db.sql --output migration.sql
# Create schema snapshot for future comparison
python3 scripts/main.py snapshot postgresql://user:pass@host/db --save snapshot.json
# Compare current schema with saved snapshot
python3 scripts/main.py compare-snapshot postgresql://user:pass@host/db snapshot.json
# Generate visual diff between schemas
python3 scripts/main.py visual-diff schema1.sql schema2.sql --html diff.html
# Check for schema drift in CI pipeline
python3 scripts/main.py check-drift --expected expected_schema.json --actual actual_schema.json
# Track schema evolution over time
python3 scripts/main.py history postgresql://user:pass@host/db --days 30
python3 scripts/main.py compare \
postgresql://dev_user:dev_pass@localhost/dev_db \
postgresql://prod_user:prod_pass@prod-host/prod_db \
--output diff-report.json
Output:
🔍 Comparing schemas: dev_db (localhost) vs prod_db (prod-host)
📊 Summary:
- Tables: 42 vs 45 (3 missing in dev)
- Columns: 287 vs 295 (8 differences)
- Indexes: 67 vs 72 (5 differences)
- Constraints: 34 vs 38 (4 differences)
⚠️ Differences found (15):
1. Table `audit_logs` missing in dev
→ CREATE TABLE audit_logs (...)
2. Column `users.email_verified` missing in dev
→ ALTER TABLE users ADD COLUMN email_verified BOOLEAN DEFAULT FALSE
3. Index `idx_users_email` missing in prod
→ CREATE INDEX idx_users_email ON users(email)
4. Constraint `fk_orders_customer_id` differs
→ ALTER TABLE orders DROP CONSTRAINT fk_orders_customer_id_old;
→ ALTER TABLE orders ADD CONSTRAINT fk_orders_customer_id FOREIGN KEY ...
✅ Generated migration: diff-report.json
✅ SQL migration script: migration_20240306_143022.sql
python3 scripts/main.py diff old_schema.sql new_schema.sql --format sql --output migration.sql
Output (migration.sql):
-- Generated: 2024-03-06 14:30:22
-- Database: PostgreSQL
-- UP Migration
CREATE TABLE audit_logs (
id SERIAL PRIMARY KEY,
user_id INTEGER,
action VARCHAR(255),
created_at TIMESTAMP DEFAULT NOW()
);
ALTER TABLE users ADD COLUMN email_verified BOOLEAN DEFAULT FALSE;
CREATE INDEX idx_users_email ON users(email);
ALTER TABLE orders
DROP CONSTRAINT fk_orders_customer_id_old,
ADD CONSTRAINT fk_orders_customer_id
FOREIGN KEY (customer_id) REFERENCES customers(id)
ON DELETE CASCADE;
-- DOWN Migration (rollback)
DROP TABLE IF EXISTS audit_logs;
ALTER TABLE users DROP COLUMN IF EXISTS email_verified;
DROP INDEX IF EXISTS idx_users_email;
ALTER TABLE orders
DROP CONSTRAINT fk_orders_customer_id,
ADD CONSTRAINT fk_orders_customer_id_old
FOREIGN KEY (customer_id) REFERENCES customers(id);
python3 scripts/main.py check-drift \
--expected schemas/expected/prod.json \
--actual schemas/actual/prod.json \
--fail-on-drift
Output (CI failure):
❌ Schema drift detected!
Differences:
1. Unexpected table `temp_backup` in production
2. Missing index `idx_orders_status` in production
3. Column `users.last_login` has different type (TIMESTAMP vs TIMESTAMPTZ)
Exit code: 1 (failed due to --fail-on-drift)
python3 scripts/main.py history postgresql://user:pass@host/db --days 90 --format timeline
Output:
📅 Schema Evolution Timeline (last 90 days)
2024-03-05: Added audit_logs table (v4.2.0 release)
2024-02-28: Added email_verified column to users table
2024-02-15: Created indexes for performance optimization
2024-02-01: Added foreign key constraints for data integrity
2024-01-20: Initial schema snapshot (v4.0.0)
📈 Change Statistics:
- Tables: +3 (42 → 45)
- Columns: +23 (272 → 295)
- Indexes: +8 (64 → 72)
- Avg changes per week: 2.1
python3 scripts/main.py visual-diff schema_v1.sql schema_v2.sql --html schema_diff.html
Output:
✨ Generated visual diff: schema_diff.html
Open in browser to see:
- Side-by-side schema comparison
- Color-coded differences (added/removed/changed)
- Interactive expand/collapse for tables
- Export options for documentation
Differences highlighted:
✅ 5 tables added (green)
❌ 2 tables removed (red)
🔄 12 columns modified (yellow)
想要更強大的技能外掛,就來小蔥技能站7w4.net看看吧。
Install dependencies:
pip3 install sqlalchemy alembic psycopg2-binary pymysql
The tool works with database connection strings, SQL files, or schema snapshot files. No special configuration directories are required.
This is a skill built by the Skill Factory. Issues and improvements should be reported through the OpenClaw project.
這個工具文件寫得很詳細看起來功能很全,但實際用起來會發現很多核心功能其實還沒做好——比如聲稱支援直接連線 PostgreSQL、MySQL 等資料庫,但實際程式碼裡完全沒有實現;生成的遷移腳本里全是"TODO"佔位符,根本沒法直接執行。如果只是比較兩個 SQL 檔案的差異勉強能用,但想用它來做資料庫遷移或 CI 自動化的話,目前階段還不太可靠。