-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolved minor bugs.
- Loading branch information
Showing
5 changed files
with
84 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
// config for Vcian/LaravelDbAuditor | ||
use Vcian\LaravelDBAuditor\Constants\Constant; | ||
|
||
return [ | ||
'skip_tables' => [ // Add table name that you want to skip | ||
'cache', | ||
'sqlite_sequence', | ||
'migrations', | ||
'migrations_history', | ||
'sessions', | ||
'password_resets', | ||
'failed_jobs', | ||
'jobs', | ||
'queue_job', | ||
'queue_failed_jobs', | ||
], | ||
'mysql_commands' => [ | ||
Constant::STANDARD_COMMAND, | ||
Constant::CONSTRAINT_COMMAND, | ||
Constant::SUMMARY_COMMAND, | ||
Constant::TRACK_COMMAND, | ||
], | ||
'sqlite_commands' => [ | ||
Constant::STANDARD_COMMAND, | ||
Constant::CONSTRAINT_COMMAND, | ||
Constant::SUMMARY_COMMAND, | ||
Constant::TRACK_COMMAND, | ||
] | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters