Skip to content

Commit 1ed1db4

Browse files
authored
Update masked-dump.php
1 parent de5f6a1 commit 1ed1db4

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

config/masked-dump.php

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,5 @@
99
* Use this dump schema definition to remove, replace or mask certain parts of your database tables.
1010
*/
1111
'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'),
12+
->allTables(),
2413
];

0 commit comments

Comments
 (0)