Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: correct casing of “PlanetScale” #1763

Merged
merged 3 commits into from
Feb 20, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
correct casing in prompt
  • Loading branch information
skullface committed Feb 19, 2024
commit e0936d1b6abff2315cba695802ce5976eef54edf
2 changes: 1 addition & 1 deletion cli/src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ export const runCli = async (): Promise<CliResults> => {
{ value: "sqlite", label: "SQLite" },
{ value: "mysql", label: "MySQL" },
{ value: "postgres", label: "PostgreSQL" },
{ value: "planetscale", label: "Planetscale" },
{ value: "planetscale", label: "PlanetScale" },
],
initialValue: "sqlite",
});
Expand Down