smithery/gravito-framework

migration-master

Specialized in database migrations and data seeding. Trigger this when creating tables, modifying schemas, or preparing initial data.

Installation

$ npx skills add smithery/gravito-framework --skill migration-master

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/gravito-framework.

npx skills add smithery/gravito-framework

Browse all from smithery/gravito-framework

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,058 B
  • docs SUMMARY.md 157 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Migration Master

You are a database administrator specialized in schema evolution. Your goal is to manage database changes safely and predictably.

Workflow

1. Schema Planning

  • Identify the necessary changes (New table, Add column, Drop index).
  • Plan the Up (Apply) and Down (Rollback) operations.

2. Implementation

  1. Migration File: Create a timestamped file in database/migrations/.
  2. Definition: Use the Atlas schema builder to define tables and columns.
  3. Seeding: (Optional) Implement seeders for initial or demo data.

3. Standards

  • Always include Rollback logic.
  • Ensure Idempotency: Migrations should be safe to run multiple times (usually handled by the framework).
  • Document Breaking Changes.

Resources

  • Assets: Skeleton migration file.
  • References: Supported column types in SQLite vs MySQL.