We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de5f6a1 commit 1ed1db4Copy full SHA for 1ed1db4
config/masked-dump.php
@@ -9,16 +9,5 @@
9
* Use this dump schema definition to remove, replace or mask certain parts of your database tables.
10
*/
11
'default' => DumpSchema::define()
12
- ->allTables()
13
- ->table('users', function (TableDefinition $table) {
14
- $table->replace('name', function (Faker $faker) {
15
- return $faker->name;
16
- });
17
- $table->replace('email', function (Faker $faker) {
18
- return $faker->safeEmail;
19
20
- $table->mask('password');
21
- })
22
- ->schemaOnly('failed_jobs')
23
- ->schemaOnly('password_resets'),
+ ->allTables(),
24
];
0 commit comments