laravel-masked-db-dump icon indicating copy to clipboard operation
laravel-masked-db-dump copied to clipboard

Dump masked information from your database

Results 11 laravel-masked-db-dump issues
Sort by recently updated
recently updated
newest added

This is an automated pull request from [Shift](https://laravelshift.com) to update your package code and dependencies to be compatible with Laravel 11.x. **Before merging**, you need to: - Checkout the `l11-compatibility`...

Trying to restore a dump created with the package on a PostgreSQL server doesn't work and produces a lot of errors. Here's a snippet: ```sql CREATE TABLE ERROR: syntax error...

First of all thank you for this great package. I am currently testing it on a big project we have. But I get the following output: ``` Unknown database type...

Hi, I have added two new features. 1) Ability to **exclude a table** from the export: Sometimes you might not want to include all tables in the export. You can...

the dump file does not group imports, so one insert statement for each line. Workaround: import dump locally, then export again using e.g. Sequel Ace Would be great if the...

Would be great if we could insert raw SQL statements e.g. for applying the solution for #4 or deleting specific entries

good first issue

I had foreign keys: `CONSTRAINT mailcoach_campaign_clicks_campaign_link_id_foreign FOREIGN KEY (campaign_link_id) REFERENCES mailcoach_campaign_links` The fix is to insert `SET FOREIGN_KEY_CHECKS=0;` at the beginning and `SET FOREIGN_KEY_CHECKS=1;` at the end of the SQL...

good first issue

Do you have any plans to support Laravel 11

This PR updates the documentation to indicate PHP callables as the preferred configuration method as developers have been encountering this error [here](https://github.com/beyondcode/laravel-masked-db-dump/pull/15#issuecomment-2761849962) and [here](https://github.com/beyondcode/laravel-masked-db-dump/issues/21) without guidance from documentation to avoid...

This PR widens the scope of the `exclude(string $tableName)` method to also accept an array of table names. There's a passing test and updated docs. I don't _think_ that this...