Skip to content

Commit

Permalink
Change default database name to postgres.
Browse files Browse the repository at this point in the history
This DB name is always present in most Postgres setups.
  • Loading branch information
yuchenshi committed May 10, 2024
1 parent 71ded1c commit e4e3925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/init/features/dataconnect/index.ts
Expand Up @@ -113,7 +113,7 @@ export async function doSetup(setup: Setup, config: Config): Promise<void> {
cloudSqlDatabase = await promptOnce({
message: `What ID would you like to use for your new database in ${cloudSqlInstanceId}?`,
type: "input",
default: `dataconnect`,
default: `postgres`,
});
}

Expand Down

0 comments on commit e4e3925

Please sign in to comment.