prisma-migrations
Version:
A Node.js library to manage Prisma ORM migrations like other ORMs
25 lines • 927 B
TypeScript
export declare const PROMPTS: {
readonly RESET_CONFIRM: {
readonly type: "confirm";
readonly name: "confirm";
readonly message: (count: number) => string;
readonly default: false;
};
readonly FRESH_CONFIRM: {
readonly type: "confirm";
readonly name: "confirm";
readonly message: "Are you sure you want to rollback and re-run all migrations? This will reset your database.";
readonly default: false;
};
readonly REFRESH_CONFIRM: {
readonly type: "confirm";
readonly name: "confirm";
readonly message: "Are you sure you want to rollback and re-run all migrations? This will reset your database.";
readonly default: false;
};
};
export declare const MESSAGES: {
readonly NO_MIGRATIONS_TO_ROLLBACK: "No migrations to rollback";
readonly CANCELLED: "Cancelled";
};
//# sourceMappingURL=constants.d.ts.map