Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
v3.0.0
Data Inserts Only (No Schema Dump)
The output of the dump process will now only include data inserts (
INSERT INTO ...
), and no longer includes schema definitions. Ensure your pipelines and dump usage are updated accordingly, and schema creation is handled separately if necessary.Features
Exclude Specific Tables from dumps
Introduces the ability to exclude specific tables from the dump process via the
DumpSchema::exclude()
method, ensuring flexibility when dumping databases for specific scenarios.Thanks @k2idev
Optimize dumps with chunking
Adds a new method
TableDefinition::outputInChunksOf(int $chunkSize)
to support chunked inserts for large datasets, improving performance and reducing memory consumption during the dump process.Thanks @k2idev
Platform Support
This packages supports MySQL, MariaDB, SQLite and PostgreSQL.
Other