@@ -18,15 +18,15 @@ describe("d1", () => {
1818 🗄 Manage Workers D1 databases
1919
2020 COMMANDS
21- wrangler d1 list List D1 databases
21+ wrangler d1 create <name> Creates a new D1 database, and provides the binding and UUID that you will put in your config file
2222 wrangler d1 info <name> Get information about a D1 database, including the current database size and state
23- wrangler d1 insights <name> Get information about the queries run on a D1 database. [experimental]
24- wrangler d1 create <name> Create D1 database
25- wrangler d1 delete <name> Delete D1 database
23+ wrangler d1 list List all D1 databases in your account
24+ wrangler d1 delete <name> Delete a D1 database
2625 wrangler d1 execute <database> Execute a command or SQL file
2726 wrangler d1 export <name> Export the contents or schema of your database as a .sql file
2827 wrangler d1 time-travel Use Time Travel to restore, fork or copy a database at a specific point-in-time
2928 wrangler d1 migrations Interact with D1 migrations
29+ wrangler d1 insights <name> Get information about the queries run on a D1 database [experimental]
3030
3131 GLOBAL FLAGS
3232 -c, --config Path to Wrangler configuration file [string]
@@ -55,15 +55,15 @@ describe("d1", () => {
5555 🗄 Manage Workers D1 databases
5656
5757 COMMANDS
58- wrangler d1 list List D1 databases
58+ wrangler d1 create <name> Creates a new D1 database, and provides the binding and UUID that you will put in your config file
5959 wrangler d1 info <name> Get information about a D1 database, including the current database size and state
60- wrangler d1 insights <name> Get information about the queries run on a D1 database. [experimental]
61- wrangler d1 create <name> Create D1 database
62- wrangler d1 delete <name> Delete D1 database
60+ wrangler d1 list List all D1 databases in your account
61+ wrangler d1 delete <name> Delete a D1 database
6362 wrangler d1 execute <database> Execute a command or SQL file
6463 wrangler d1 export <name> Export the contents or schema of your database as a .sql file
6564 wrangler d1 time-travel Use Time Travel to restore, fork or copy a database at a specific point-in-time
6665 wrangler d1 migrations Interact with D1 migrations
66+ wrangler d1 insights <name> Get information about the queries run on a D1 database [experimental]
6767
6868 GLOBAL FLAGS
6969 -c, --config Path to Wrangler configuration file [string]
@@ -85,9 +85,9 @@ describe("d1", () => {
8585 Interact with D1 migrations
8686
8787 COMMANDS
88- wrangler d1 migrations list <database> List your D1 migrations
8988 wrangler d1 migrations create <database> <message> Create a new migration
90- wrangler d1 migrations apply <database> Apply D1 migrations
89+ wrangler d1 migrations list <database> View a list of unapplied migration files
90+ wrangler d1 migrations apply <database> Apply any unapplied D1 migrations
9191
9292 GLOBAL FLAGS
9393 -c, --config Path to Wrangler configuration file [string]
0 commit comments