diff --git a/schema-engine/core/src/commands/dev_diagnostic.rs b/schema-engine/core/src/commands/dev_diagnostic.rs index 7eed03f0ce5d..28d6efe016fe 100644 --- a/schema-engine/core/src/commands/dev_diagnostic.rs +++ b/schema-engine/core/src/commands/dev_diagnostic.rs @@ -106,7 +106,7 @@ Drift detected: Your database schema is not in sync with your migration history. The following is a summary of the differences between the expected database schema given your migrations files, and the actual schema of the database. -It should be understood as the set of changes to get from the expected schema to the actual schema. +This summary details discrepancies by listing elements found in the current database schema but missing in your Prisma schema, indicating the Prisma schema updates required for alignment. "#; const FIRST_TIME_MIGRATION_MESSAGE: &str = r#" diff --git a/schema-engine/sql-migration-tests/tests/migrations/dev_diagnostic_tests.rs b/schema-engine/sql-migration-tests/tests/migrations/dev_diagnostic_tests.rs index 93e77a310276..05c73894156e 100644 --- a/schema-engine/sql-migration-tests/tests/migrations/dev_diagnostic_tests.rs +++ b/schema-engine/sql-migration-tests/tests/migrations/dev_diagnostic_tests.rs @@ -534,7 +534,7 @@ fn drift_can_be_detected_without_migrations_table_dev(api: TestApi) { The following is a summary of the differences between the expected database schema given your migrations files, and the actual schema of the database. - It should be understood as the set of changes to get from the expected schema to the actual schema. + This summary details discrepancies by listing elements found in the current database schema but missing in your Prisma schema, indicating the Prisma schema updates required for alignment. If you are running this the first time on an existing database, please make sure to read this documentation page: https://www.prisma.io/docs/guides/database/developing-with-prisma-migrate/troubleshooting-development @@ -574,7 +574,7 @@ fn drift_detect_first_time_message_should_not_be_dispyed_if_migration_table_exis The following is a summary of the differences between the expected database schema given your migrations files, and the actual schema of the database. - It should be understood as the set of changes to get from the expected schema to the actual schema. + This summary details discrepancies by listing elements found in the current database schema but missing in your Prisma schema, indicating the Prisma schema updates required for alignment. [+] Added tables - cat