Skip to content

Commit d768e76

Browse files
committed
Addressing PR feedback
1 parent 281cb3f commit d768e76

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/commands/data/pg/attachments/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export default class DataPgAttachmentsCreate extends BaseCommand {
2424
static flags = {
2525
app: Flags.app({required: true}),
2626
as: Flags.string({description: 'name for Postgres database attachment'}),
27-
confirm: Flags.string({hidden: true}),
27+
confirm: Flags.string({char: 'c', description: 'pass in the app name to skip confirmation prompts'}),
2828
credential: Flags.string({
2929
description: 'credential to use for database',
3030
exclusive: ['pool'],

src/commands/data/pg/attachments/destroy.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default class DataPgAttachmentsDestroy extends BaseCommand {
1717

1818
static flags = {
1919
app: Flags.app({required: true}),
20-
confirm: Flags.string({hidden: true}),
20+
confirm: Flags.string({char: 'c', description: 'pass in the app name to skip confirmation prompts'}),
2121
remote: Flags.remote(),
2222
}
2323

src/commands/data/pg/fork.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default class Fork extends BaseCommand {
4040
static flags = {
4141
app: Flags.app({required: true}),
4242
as: Flags.string({description: 'name for the initial database attachment'}),
43-
confirm: Flags.string({hidden: true}),
43+
confirm: Flags.string({char: 'c', description: 'pass in the app name to skip confirmation prompts'}),
4444
level: Flags.string({description: 'set compute scale'}),
4545
name: Flags.string({char: 'n', description: 'name for the database'}),
4646
'provision-option': Flags.string({

0 commit comments

Comments
 (0)