@stacksjs/buddy 0.70.108 → 0.70.109
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/dist/commands/migrate.js +1 -1
- package/package.json +1 -1
package/dist/commands/migrate.js
CHANGED
|
@@ -83,7 +83,7 @@ async function reportMissingForeignKeys() {
|
|
|
83
83
|
+ ${result.missing.length - 5} more \u2014 run \`./buddy doctor\` for the full list.` : "";
|
|
84
84
|
log.warn(`${result.missing.length} of ${result.declared.length} declared foreign keys are missing from the live schema:
|
|
85
85
|
${sample}${more}
|
|
86
|
-
` + "
|
|
86
|
+
` + "The model-backed create migrations may be stale for this database \u2014 run `./buddy migrate:fresh` to regenerate and replay them from the model attributes (this resets data).");
|
|
87
87
|
} catch (err) {
|
|
88
88
|
log.debug(`[migrate] FK integrity check skipped: ${err instanceof Error ? err.message : String(err)}`);
|
|
89
89
|
}
|