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
For each DBMS you need to have its respective dump tool installed.
41
+
42
+
- MySQL/MariaDB => `mysqldump`
43
+
- SQLite => `sqlite3`
44
+
- PostgreSQL => `pg_dump`
45
+
46
+
⚠️ For `pg_dump` it is especially important that you have a compatible version installed. So e.g. if you have a **PostgreSQL 14 server** you need a **pg_dump version 14** ⚠️
47
+
35
48
## How to use
36
49
37
50
After installing the plugin you now have a new command available to you:
38
51
39
52
```
40
-
bin/cake dump_sql
53
+
bin/cake dump_sql
41
54
```
42
55
43
56
After executing that command you should see a SQL representation of your `default` datasource inside your console.
0 commit comments