Skip to content

Commit fecc3e8

Browse files
committed
Validates by default
1 parent 7f80d53 commit fecc3e8

File tree

1 file changed

+13
-16
lines changed

1 file changed

+13
-16
lines changed

src/Web/Documentation/content/main/1-essentials/05-models.md

+13-16
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,13 @@ A few [console commands](../3-console/02-building-console-commands) are provided
211211
./tempest migrate:validate
212212
```
213213

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+
:::
215221

216222
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.
217223

@@ -226,28 +232,19 @@ If any migration fails validation, it will be reported with an error message spe
226232
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.
227233
:::
228234

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
240236

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.
242238

243-
:::warning Rehashing Migrations
239+
:::warning
240+
This operation can mask serious issues like tampered migration files or schema inconsistencies.
244241

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.
243+
:::
246244

247245
```sh
248246
./tempest migrate:rehash
249247
```
250-
:::
251248

252249
## Database configuration
253250

0 commit comments

Comments
 (0)