@meith/upgrade 0.26.1 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/plan.ts +2 -2
package/package.json
CHANGED
package/src/plan.ts
CHANGED
|
@@ -190,7 +190,7 @@ export function upgradeNotice(plan: UpgradePlan, state: UpgradeState): string |
|
|
|
190
190
|
`The database and this deployment are both at ${state.recordedVersion}, but ` +
|
|
191
191
|
`${migrations} migration(s) have never been applied` +
|
|
192
192
|
(plugins.length > 0 ? ` (${plugins.join(', ')})` : '') +
|
|
193
|
-
'. Run `
|
|
193
|
+
'. Run `meith upgrade`.'
|
|
194
194
|
)
|
|
195
195
|
}
|
|
196
196
|
|
|
@@ -198,6 +198,6 @@ export function upgradeNotice(plan: UpgradePlan, state: UpgradeState): string |
|
|
|
198
198
|
`An upgrade is pending: the database is at ${state.recordedVersion} and this deployment ` +
|
|
199
199
|
`is ${state.codeVersion}` +
|
|
200
200
|
(migrations > 0 ? `, with ${migrations} migration(s) to apply` : '') +
|
|
201
|
-
'. Run `
|
|
201
|
+
'. Run `meith upgrade`.'
|
|
202
202
|
)
|
|
203
203
|
}
|