Skip to content

Commit

Permalink
Fixes #1417
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Jan 24, 2020
1 parent 81ffe9c commit 151b224
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions cli/prisma2/src/CLI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class CLI implements Command {
init Setup Prisma for your app
introspect Get the datamodel of your database
generate Generate Prisma Client
generate Generate artifacts (e.g. Prisma Client)
${chalk.bold('Flags')}
Expand All @@ -100,7 +100,7 @@ export class CLI implements Command {
Introspect an existing database
${chalk.dim(`$`)} prisma2 introspect
Generate Prisma Client
Generate artifacts (e.g. Prisma Client)
${chalk.dim(`$`)} prisma2 generate
`)

Expand All @@ -116,7 +116,7 @@ export class CLI implements Command {
init Setup Prisma for your app
introspect Get the datamodel of your database
generate Generate Prisma Client
generate Generate artifacts (e.g. Prisma Client)
migrate Migrate your schema ${chalk.dim('(experimental)')}
studio Run Prisma Studio ${chalk.dim('(experimental)')}
Expand All @@ -132,7 +132,7 @@ export class CLI implements Command {
Introspect an existing database
${chalk.dim(`$`)} prisma2 introspect
Generate Prisma Client
Generate artifacts (e.g. Prisma Client)
${chalk.dim(`$`)} prisma2 generate
Save your changes into a migration
Expand Down
2 changes: 1 addition & 1 deletion cli/prisma2/src/Generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export class Generate implements Command {

// static help template
private static help = format(`
Generate the Prisma Client.
Generate artifacts (e.g. Prisma Client)
${chalk.bold('Usage')}
Expand Down

0 comments on commit 151b224

Please sign in to comment.