migrate

A code-only snippet with no actual functionality is not valid for this task. Please provide a valid snippet for translation.

Updated Jan 26, 2026
One-click install
npx skills add https://github.com/mgoodman60/foremanos --skill migrate-mgoodman60
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: migrate
Source: https://github.com/mgoodman60/foremanos/tree/main/.claude/skills/migrate
Command: npx skills add https://github.com/mgoodman60/foremanos --skill migrate-mgoodman60

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill addresses the tedium and risk of managing Prisma migrations by guiding a standardized workflow, reducing human error, and accelerating deployment of schema changes.

Core Features & Use Cases

  • Migration status & validation: Check progress and validate schemas before applying changes.
  • Create and apply migrations: Generate and execute new migrations in a controlled manner.
  • Dev database reset: Safely reset development environments to reproduce issues or test migrations.

Quick Start

Use the migrate skill to check the current migration status, create a new migration named add_user_table, and apply pending migrations in your development environment.

Frequently Asked Questions about migrate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate Prisma database migrations in a CI environment?

Automate Prisma database migrations in CI by applying standardized step-by-step commands to create, validate, and apply schema changes. This reduces human error and accelerates deployment across local and CI workflows.

What is the best way to check Prisma migration status before applying changes?

Check Prisma migration status by validating the schema and reviewing progress before applying pending changes. This controlled workflow ensures database integrity and catches schema mismatches early in development.

How do I safely reset my Prisma dev database to test migrations?

Safely reset your Prisma dev database using controlled CLI commands to reproduce issues or test schema changes. This workflow standardizes environment resets without risking production data.

Do I need the Prisma CLI configured to create and apply migrations?

Yes, you need a configured Prisma setup and access to the Prisma CLI to create and apply migrations. The workflow relies on CLI commands to generate and execute database schema changes across environments.

Why does standardizing the Prisma migration workflow reduce schema deployment errors?

Standardizing the Prisma migration workflow reduces schema deployment errors by guiding controlled creation, validation, and application of changes. This prevents manual mistakes and ensures consistent database states across local and CI environments.