You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-11Lines changed: 30 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,46 +9,51 @@
9
9
10
10
## Introduction
11
11
12
-
The [squashing migrations](https://laravel.com/docs/migrations#squashing-migrations) in Laravel does not export data from tables?
12
+
The [squashing migrations](https://laravel.com/docs/migrations#squashing-migrations) in Laravel does not export data
13
+
from tables?
13
14
14
15
There is a solution!
15
16
16
17
### How it works?
17
18
18
-
After installing and configuring the package, you simply run the console command `php artisan schema:dump` (with or without flags - it's up to you), and the final SQL dump file will contain the data structure including the contents of the tables you specified at the configuration stage.
19
+
After installing and configuring the package, you simply run the console command `php artisan schema:dump` (with or
20
+
without flags - it's up to you), and the final SQL dump file will contain the data structure including the contents of
21
+
the tables you specified at the configuration stage.
19
22
20
-
This will allow you to painlessly execute the `php artisan schema:dump --prune` command, which will remove unnecessary migration files.
23
+
This will allow you to painlessly execute the `php artisan schema:dump --prune` command, which will remove unnecessary
24
+
migration files.
21
25
22
26
## Requirements
23
27
24
28
- Laravel 10, 11
25
29
- PHP 8.2 or higher
26
30
- Databases:
27
-
- Sqlite 3
28
-
- MySQL 5.7, 8, 9
29
-
- PostgreSQL 12, 13, 14, 15, 16
31
+
- Sqlite 3
32
+
- MySQL 5.7, 8, 9
33
+
- PostgreSQL 12, 13, 14, 15, 16, 17
30
34
31
35
## Installation
32
36
33
-
To get the latest version of `Database Data Dumper`, simply require the project using [Composer](https://getcomposer.org):
37
+
To get the latest version of `Database Data Dumper`, simply require the project
0 commit comments