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: lib/commands/databases.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2330,7 +2330,7 @@ databases
2330
2330
2331
2331
databases
2332
2332
.command(`create`)
2333
-
.description(`[**DEPRECATED** - This command is deprecated. Please use 'tables-db create-database' instead] Create a new Database. `)
2333
+
.description(`[**DEPRECATED** - This command is deprecated. Please use 'tables-db create' instead] Create a new Database. `)
2334
2334
.requiredOption(`--database-id <database-id>`,`Unique Id. Choose a custom ID or generate a random ID with 'ID.unique()'. Valid chars are a-z, A-Z, 0-9, period, hyphen, and underscore. Can't start with a special char. Max length is 36 chars.`)
2335
2335
.requiredOption(`--name <name>`,`Database name. Max length: 128 chars.`)
2336
2336
.option(`--enabled [value]`,`Is the database enabled? When set to 'disabled', users cannot access the database but Server SDKs with an API key can still read and write to the database. No data is lost when this is toggled.`,(value)=>value===undefined ? true : parseBool(value))
0 commit comments