We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f67cd commit 8acd830Copy full SHA for 8acd830
1 file changed
deploy/database.ts
@@ -16,7 +16,7 @@ const databasesProvisionCommand = new Command<DatabaseContext>()
16
value: (value: string): "denokv" | "prisma" => {
17
if (value !== "denokv" && value !== "prisma") {
18
throw new ValidationError(
19
- `kind must be either "kv" or "prisma", but got "${value}".`,
+ `kind must be either "denokv" or "prisma", but got "${value}".`,
20
);
21
}
22
return value;
0 commit comments