You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Web/Documentation/content/main/1-essentials/05-models.md
+13-16
Original file line number
Diff line number
Diff line change
@@ -211,7 +211,13 @@ A few [console commands](../3-console/02-building-console-commands) are provided
211
211
./tempest migrate:validate
212
212
```
213
213
214
-
#### Validating migrations
214
+
### Validating migrations
215
+
216
+
:::warning
217
+
All `migrate:up` and `migrate:fresh` commands validate migration files to ensure their integrity by default.
218
+
219
+
If you don't want to validate migration files, you can use the `--no-validate` argument.
220
+
:::
215
221
216
222
The `migrate:validate` command checks the integrity of migration files by comparing their current hash with the stored hash in the database. If a migration file has been tampered with, the command will report it as a validation failure.
217
223
@@ -226,28 +232,19 @@ If any migration fails validation, it will be reported with an error message spe
226
232
Only the actual SQL commands (minified and stripped of comments) are hashed during validation. This means that code-style changes, such as indentation or formatting, and comments will not impact the validation process.
227
233
:::
228
234
229
-
#### Using the `--validate` argument
230
-
231
-
Both the `migrate:up` and `migrate:fresh` commands now support an optional `--validate` argument. When this argument is provided, the commands will first validate the migration files using `migrate:validate` before proceeding. If validation fails, the migration process will stop.
232
-
233
-
```sh
234
-
{:hl-comment:# Run migrations with validation:}
235
-
./tempest migrate:up --validate
236
-
237
-
{:hl-comment:# Drop all tables and rerun migrations with validation:}
238
-
./tempest migrate:fresh --validate
239
-
```
235
+
##### Rehashing Migrations
240
236
241
-
This ensures that only valid, untampered migration files are applied to the database.
237
+
The `migrate:rehash` command bypasses integrity checks to update stored migration hashes in the database.
242
238
243
-
:::warning Rehashing Migrations
239
+
:::warning
240
+
This operation can mask serious issues like tampered migration files or schema inconsistencies.
244
241
245
-
The `migrate:rehash` command bypasses integrity checks to update stored migration hashes in the database. This operation can mask serious issues like tampered migration files or schema inconsistencies. Only use this command when absolutely necessary and when you're completely confident that your migration files are correct and consistent across environments.
242
+
Only use this command when absolutely necessary and when you're confident that your migration files are correct and consistent across environments.
0 commit comments