在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用prisma-cli-migrate-reset
星标8
分支1
更新时间2026年2月6日 14:17
prisma migrate reset
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
文件资源管理器
2 个文件SKILL.md
readonly菜单
prisma migrate reset
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
prisma db execute. Reference when using this Prisma feature.
prisma db pull. Reference when using this Prisma feature.
prisma db push. Reference when using this Prisma feature.
prisma db seed. Reference when using this Prisma feature.
prisma debug. Reference when using this Prisma feature.
prisma dev. Reference when using this Prisma feature.
| name | prisma-cli-migrate-reset |
| description | prisma migrate reset |
| license | MIT |
| metadata | {"author":"prisma","version":"7.0.0"} |
Resets your database and re-applies all migrations.
prisma migrate reset [options]
prisma/migrations/Warning: All data will be lost.
| Option | Description |
|---|---|
--force / -f | Skip confirmation prompt |
--schema | Path to schema file |
--config | Custom path to your Prisma config file |
prisma migrate reset
Prompts for confirmation in interactive terminals.
prisma migrate reset --force
prisma migrate reset --schema=./custom/schema.prisma
migrate reset automatically ran prisma generate.prisma generate separately if you want to update the client, though reset focuses on the database state.Configure seed script in prisma.config.ts to run it automatically after reset:
export default defineConfig({
migrations: {
seed: 'tsx prisma/seed.ts',
},
})